Files
Apollon/Apollon.WPF/Commands/NavigateCommand.cs
Natlinux a2c926f915 Revert "impliment NavigateService"
This reverts commit 439850b5b7.
2022-11-27 13:18:15 +01:00

29 lines
813 B
C#

using Apollon.WPF.Stores;
using Apollon.WPF.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.Commands
{
public class NavigateCommand<TViewModel> : CommandBase
where TViewModel : ViewModelBase
{
private readonly NavigationStore _navigationStore;
private readonly Func<TViewModel> _createViewModel;
public NavigateCommand(NavigationStore navigationStore, Func<TViewModel> createViewModel)
{
_navigationStore = navigationStore;
_createViewModel = createViewModel;
}
public override void Execute(object parameter)
{
_navigationStore.CurrentViewModel = _createViewModel();
}
}
}