Statistiques
| Branche: | Révision:

inraetemplate / INRAETemplate / View / AboutView.xaml.cs @ 7b67ff55

Historique | Voir | Annoter | Télécharger (222 octets)

1 7b67ff55 ajournaux
using INRAETemplate.ViewModel;
2
3 fa2aa88f ajournaux
namespace INRAETemplate.View;
4
5
public partial class AboutView : ContentPage
6
{
7
	public AboutView()
8
	{
9
		InitializeComponent();
10 7b67ff55 ajournaux
		this.BindingContext = new AboutViewModel();
11
    }
12 fa2aa88f ajournaux
}