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.
19 lines
616 B
19 lines
616 B
using System.Windows; |
|
using System.Windows.Controls; |
|
using System.Windows.Input; |
|
using HandyControl.Controls; |
|
namespace SparkClient.ViewModel.BaseWindow; |
|
|
|
public class HomeWindowVM : BaseViewModel |
|
{ |
|
private readonly MainViewModel _mainViewModel; |
|
|
|
public ICommand ShowHelperPageCommand => _mainViewModel.ShowHelperPageCommand; |
|
public ICommand ShowSettingsPageCommand => _mainViewModel.ShowSettingsPageCommand; |
|
public ICommand ShowProfilePageCommand => _mainViewModel.ShowProfilePageCommand; |
|
|
|
public HomeWindowVM(MainViewModel mainViewModel) |
|
{ |
|
_mainViewModel = mainViewModel; |
|
} |
|
} |