Nya förnster och navigering mellan dem

This commit is contained in:
2025-08-17 12:56:29 +02:00
parent 244e2fd197
commit eac181fa63
19 changed files with 289 additions and 81 deletions

View File

@ -0,0 +1,14 @@
namespace AdventureWorks.MAUI.Views;
public partial class UserListView : ContentPage
{
public UserListView()
{
InitializeComponent();
}
private async void NavigateToDetail_Clicked(object sender, EventArgs e)
{
await Shell.Current.GoToAsync(nameof(Views.UserDetailView));
}
}