using Avalonia.Controls;
using HelloItQuantum.Views;
using HelloItQuantum.ViewModels;
namespace HelloItQuantum.Navigation
{
///
/// Используется для смены страницы/активности
///
public class PageSwitcher : ViewModelBase
{
private UserControl? view = new HomeView();
///
/// Текущая отображаемая страница
///
public UserControl View
{
get => view;
set
{
view = value;
OnPropertyChanged(nameof(View));
}
}
}
}