csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
using System;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using Avalonia;
|
|
using Avalonia.VisualTree;
|
|
using Avalonia.Controls;
|
|
using ReactiveUI;
|
|
|
|
namespace Avalonia.ReactiveUI
|
|
{
|
|
/// <summary>
|
|
/// A ReactiveUI <see cref="Window"/> that implements the <see cref="IViewFor{TViewModel}"/> interface and will
|
|
/// activate your ViewModel automatically if the view model implements <see cref="IActivatableViewModel"/>. When
|
|
/// the DataContext property changes, this class will update the ViewModel property with the new DataContext value,
|
|
/// and vice versa.
|
|
/// </summary>
|
|
/// <typeparam name="TViewModel">ViewModel type.</typeparam>
|
|
public class ReactiveWindow<TViewModel> : Window, IViewFor<TViewModel> where TViewModel : class
|
|
{
|
|
public static readonly StyledProperty<TViewModel?> ViewModelProperty = AvaloniaProperty
|
|
.Register<ReactiveWindow<TViewModel>, TViewModel?>(nameof(ViewModel));
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ReactiveWindow{TViewModel}"/> class.
|
|
/// </summary>
|
|
public ReactiveWindow()
|
|
{
|
|
// This WhenActivated block calls ViewModel's WhenActivated
|
|
// block if the ViewModel implements IActivatableViewModel.
|
|
this.WhenActivated(disposables => { });
|
|
this.GetObservable(DataContextProperty).Subscribe(OnDataContextChanged);
|
|
this.GetObservable(ViewModelProperty).Subscribe(OnViewModelChanged);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The ViewModel.
|
|
/// </summary>
|
|
public TViewModel? ViewModel
|
|
{
|
|
get => GetValue(ViewModelProperty);
|
|
set => SetValue(ViewModelProperty, value);
|
|
}
|
|
|
|
object? IViewFor.ViewModel
|
|
{
|
|
get => ViewModel;
|
|
set => ViewModel = (TViewModel?)value;
|
|
}
|
|
|
|
private void OnDataContextChanged(object? value)
|
|
{
|
|
if (value is TViewModel viewModel)
|
|
{
|
|
ViewModel = viewModel;
|
|
}
|
|
else
|
|
{
|
|
ViewModel = null;
|
|
}
|
|
}
|
|
|
|
private void OnViewModelChanged(object? value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
ClearValue(DataContextProperty);
|
|
}
|
|
else if (DataContext != value)
|
|
{
|
|
DataContext = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|