Replies: 4 comments
-
A little bit more info would be nice. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Assuming you're using the WPF UI template, it should be within the private async Task HandleActivationAsync()
{
if (!Application.Current.Windows.OfType<MainWindow>().Any())
{
_navigationWindow = (
_serviceProvider.GetService(typeof(INavigationWindow)) as INavigationWindow
)!;
_navigationWindow!.ShowWindow();
_navigationWindow.Navigate(typeof(Views.Pages.DashboardPage)); // <- Change Here
}
await Task.CompletedTask;
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
How to use this template in the framework framework |
Beta Was this translation helpful? Give feedback.
0 replies
-
Does the project support running under the framework version |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hello, how can i change the startup page other than DashboardPage ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions