mirror of
https://github.com/logos-co/velopack.git
synced 2026-08-31 05:31:16 +00:00
19 lines
347 B
C#
19 lines
347 B
C#
namespace UnoSample.Presentation;
|
|||
|
|
|
||
|
|
public class ShellViewModel
|
||
|
|
{
|
||
|
|
private readonly INavigator _navigator;
|
||
|
|
|
||
|
|
public ShellViewModel(
|
||
|
|
INavigator navigator)
|
||
|
|
{
|
||
|
|
_navigator = navigator;
|
||
|
|
_ = Start();
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task Start()
|
||
|
|
{
|
||
|
|
await _navigator.NavigateViewModelAsync<MainViewModel>(this);
|
||
|
|
}
|
||
|
|
}
|