Statistiques
| Branche: | Révision:

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

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

1
using INRAETemplate.ViewModel;
2

    
3
namespace INRAETemplate.View;
4

    
5
public partial class AboutView : ContentPage
6
{
7
	public AboutView()
8
	{
9
		InitializeComponent();
10
		this.BindingContext = new AboutViewModel();
11
    }
12
}