MauiTutorial/MauiApp2/Views/AllNotesPage.xaml.cs
2024-09-05 18:06:53 +02:00

13 lines
284 B
C#

namespace MauiApp2.Views;
public partial class AllNotesPage : ContentPage
{
public AllNotesPage()
{
InitializeComponent();
}
private void ContentPage_NavigatedTo(object sender, NavigatedToEventArgs e)
{
notesCollection.SelectedItem = null;
}
}