root / GES_PAC / View / MainView.xaml @ 957bebf1
Historique | Voir | Annoter | Télécharger (2,955 ko)
1 |
<?xml version="1.0" encoding="utf-8" ?>
|
---|---|
2 |
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
4 |
xmlns:vm="clr-namespace:GES_PAC.ViewModel" |
5 |
xmlns:tools="clr-namespace:GES_PAC.View.Tools" |
6 |
x:Class="GES_PAC.View.MainView" |
7 |
x:DataType="vm:MainViewModel"> |
8 |
|
9 |
<Grid>
|
10 |
<StackLayout BackgroundColor="White" Spacing="50"> |
11 |
|
12 |
<tools:ConnectionIndicatorView /> |
13 |
<ScrollView>
|
14 |
<StackLayout Spacing="100"> |
15 |
|
16 |
<Grid ColumnDefinitions="*,Auto,*" Padding="10"> |
17 |
|
18 |
<Button Text="Exporter" |
19 |
Command="{Binding ExportDataCommand}" |
20 |
Grid.Column="0" |
21 |
HorizontalOptions="Start" |
22 |
VerticalOptions="Center" /> |
23 |
|
24 |
<Label Text="Bonjour" |
25 |
Grid.Column="1" |
26 |
FontSize="22" |
27 |
FontAttributes="Bold" |
28 |
HorizontalOptions="Center" |
29 |
VerticalOptions="Center" /> |
30 |
|
31 |
</Grid>
|
32 |
|
33 |
<Label Text="{Binding CurrentDayText}" |
34 |
FontSize="18" |
35 |
HorizontalOptions="Center"/> |
36 |
|
37 |
</StackLayout>
|
38 |
</ScrollView>
|
39 |
<StackLayout HorizontalOptions="Center" VerticalOptions="EndAndExpand" Spacing="75" Margin="0, 0, 0, 50"> |
40 |
<Button
|
41 |
Text="Reprendre la journée" |
42 |
Command="{Binding ResumeDayCommand}" |
43 |
Style="{StaticResource btnNormal}" |
44 |
VerticalOptions="End" |
45 |
HorizontalOptions="Center" |
46 |
IsVisible="{Binding HasLastDay}"/> |
47 |
|
48 |
<Button
|
49 |
Text="Créer une journée" |
50 |
Command="{Binding GoToCreateDayCommand}" |
51 |
Style="{StaticResource btnNormal}" |
52 |
VerticalOptions="End"/> |
53 |
</StackLayout>
|
54 |
</StackLayout>
|
55 |
<Grid Grid.RowSpan="1" IsVisible="{Binding IsBusy}"> |
56 |
<Border StrokeThickness="0" |
57 |
Background="Black" |
58 |
Opacity="0.5" |
59 |
Padding="20" |
60 |
WidthRequest="160" |
61 |
HeightRequest="160" |
62 |
HorizontalOptions="Center" |
63 |
VerticalOptions="Center" |
64 |
StrokeShape="RoundRectangle 20"> |
65 |
|
66 |
<VerticalStackLayout HorizontalOptions="Center" VerticalOptions="Center"> |
67 |
<ActivityIndicator IsRunning="True" Color="White" /> |
68 |
<Label Text="Chargement..." |
69 |
FontSize="14" |
70 |
TextColor="white" |
71 |
HorizontalOptions="Center"/> |
72 |
</VerticalStackLayout>
|
73 |
</Border>
|
74 |
</Grid>
|
75 |
|
76 |
</Grid>
|
77 |
</ContentPage>
|