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.
notus/notus/notus_vue/RecherPage.xaml.cs

23 lines
555 B

using Microsoft.Maui.Controls;
using Biblioteque_de_Class;
using Notus_Persistance;
namespace notus;
public partial class RecherPage : ContentPage
{
PersistenceManager manager = (Application.Current as App).manager;
public RecherPage()
{
manager.LoadDatabaseData();
InitializeComponent();
ListNote.BindingContext = manager;
NomNote.BindingContext = manager;
}
private async void Profil_Clicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new ProfilPage());
}
}