You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
265 B

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