root / GES_PAC / AppShell.xaml.cs @ fff89fc5
Historique | Voir | Annoter | Télécharger (1,064 ko)
1 | 65ad7e66 | Lucas Bihannic | using GES_PAC.View; |
---|---|---|---|
2 | 18f910c6 | Lucas Bihannic | using GES_PAC.ViewModel; |
3 | 65ad7e66 | Lucas Bihannic | |
4 | namespace GES_PAC |
||
5 | { |
||
6 | public partial class AppShell : Shell |
||
7 | { |
||
8 | public AppShell() |
||
9 | { |
||
10 | InitializeComponent(); |
||
11 | 18f910c6 | Lucas Bihannic | BindingContext = new AppShellViewModel(); |
12 | |||
13 | Routing.RegisterRoute(nameof(MainView), typeof(MainView)); |
||
14 | 65ad7e66 | Lucas Bihannic | Routing.RegisterRoute(nameof(CreateDayView), typeof(CreateDayView)); |
15 | Routing.RegisterRoute(nameof(CreatePersonView), typeof(CreatePersonView)); |
||
16 | Routing.RegisterRoute(nameof(CreatePlaceView), typeof(CreatePlaceView)); |
||
17 | 5d673ce0 | Lucas Bihannic | Routing.RegisterRoute(nameof(CreateCalibrationView), typeof(CreateCalibrationView)); |
18 | 09d4a0de | lbihannic | Routing.RegisterRoute(nameof(SetListView), typeof(SetListView)); |
19 | Routing.RegisterRoute(nameof(CreateSetView), typeof(CreateSetView)); |
||
20 | Routing.RegisterRoute(nameof(ChambersView), typeof(ChambersView)); |
||
21 | Routing.RegisterRoute(nameof(EnterAnimalView), typeof(EnterAnimalView)); |
||
22 | fff89fc5 | lbihannic | Routing.RegisterRoute(nameof(CreateMeasureView), typeof(CreateMeasureView)); |
23 | 65ad7e66 | Lucas Bihannic | } |
24 | } |
||
25 | } |