本文整理汇总了C#中INavigationService.GoTo方法的典型用法代码示例。如果您正苦于以下问题:C# INavigationService.GoTo方法的具体用法?C# INavigationService.GoTo怎么用?C# INavigationService.GoTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类INavigationService
的用法示例。
在下文中一共展示了INavigationService.GoTo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PrimaryViewModel
public PrimaryViewModel()
{
Title = "CoApp Update";
MessengerInstance.Register<InstallationFailedMessage>(this, HandleInstallFailed);
MessengerInstance.Register<InstallationFinishedMessage>(this, HandleInstallFinished);
MessengerInstance.Register<SelectedProductsChangedMessage>(this, HandleChanged);
Loaded += OnLoaded;
var loc = new LocalServiceLocator();
UpdateService = loc.UpdateService;
PolicyService = loc.PolicyService;
NavigationService = loc.NavigationService;
AutomationService = loc.AutomationService;
UpdateSettingsService = loc.UpdateSettingsService;
SelectUpdates = new RelayCommand(() => NavigationService.GoTo(ViewModelLocator.SelectUpdatesViewModelStatic));
Install = new RelayCommand(() => NavigationService.GoTo(ViewModelLocator.InstallingViewModelStatic, false));
CheckForUpdates = new RelayCommand(() => NavigationService.GoTo(ViewModelLocator.UpdatingViewModelStatic));
/*
FeedWarning = new RelayCommand(() => MessengerInstance.Send(new MetroDialogBoxMessage
{
Title =
"The Following Feeds Could Not Be Reached",
Content = Warnings,
Buttons =
new ObservableCollection
<ButtonDescription>
{
new ButtonDescription
{
Title = "Cancel",
IsCancel = true
}
}
}));*/
}
示例2: MainWindowViewModel
/// <summary>
/// Initializes a new instance of the MainViewModel class.
/// </summary>
public MainWindowViewModel()
{
Messenger.Default.Register<GoToMessage>(this, ActOnNavigate);
// Messenger.Default.Register<MetroDialogBoxMessage>(this, HandleDialogBoxMessage);
nav = new LocalServiceLocator().NavigationService;
Back = new RelayCommand(() => nav.Back());
Settings =
new RelayCommand(
() => nav.GoTo(Gui.Toolkit.ViewModels.ViewModelLocator.SettingsViewModelStatic));
//temporary
Shutdown = new RelayCommand(() => Application.Current.Shutdown());
CancelDialog = new RelayCommand(() => UpdateOnUI(() => UpdateOnUI(() => DialogBoxVisualState = "Base")));
}
示例3: CoAppWindowViewModel
/// <summary>
/// Initializes a new instance of the MainViewModel class.
/// </summary>
public CoAppWindowViewModel()
{
Messenger.Default.Register<GoToMessage>(this, ActOnNavigate);
// Messenger.Default.Register<MetroDialogBoxMessage>(this, HandleDialogBoxMessage);
Messenger.Default.Register<StartLoadingPageMessage>(this, StartLoadingPage);
Messenger.Default.Register<EndLoadingPageMessage>(this, EndLoadingPage);
_nav = new LocalServiceLocator().NavigationService;
Back = new RelayCommand(() => _nav.Back());
Settings =
new RelayCommand(
() => _nav.GoTo(ViewModelLocator.SettingsViewModelStatic));
//temporary
Shutdown = new RelayCommand(() => Application.Current.Shutdown());
// CancelDialog = new RelayCommand(() => UpdateOnUI(() => DialogBoxVisualState = "Base"));
}