root / GES_PAC / View / SetListView.xaml @ e837cdf1
Historique | Voir | Annoter | Télécharger (2,897 ko)
1 | 09d4a0de | lbihannic | <?xml version="1.0" encoding="utf-8" ?>
|
---|---|---|---|
2 | 957b1f34 | lbihannic | <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.SetListView" |
||
7 | x:DataType="vm:SetListViewModel"> |
||
8 | |||
9 | <Grid>
|
||
10 | <StackLayout BackgroundColor="White" Spacing="50"> |
||
11 | |||
12 | <tools:ConnectionIndicatorView /> |
||
13 | <ScrollView>
|
||
14 | acb5dd8c | lbihannic | <StackLayout Spacing="100"> |
15 | |||
16 | <Label Text="Sélectionnez une série" |
||
17 | FontSize="22" |
||
18 | FontAttributes="Bold" |
||
19 | HorizontalOptions="Center"/> |
||
20 | |||
21 | <Label Text="{Binding LastSetText}" |
||
22 | 957b1f34 | lbihannic | FontSize="18" |
23 | HorizontalOptions="Center"/> |
||
24 | |||
25 | </StackLayout>
|
||
26 | </ScrollView>
|
||
27 | <StackLayout HorizontalOptions="Center" VerticalOptions="EndAndExpand" Spacing="75" Margin="0, 0, 0, 50"> |
||
28 | |||
29 | <Button
|
||
30 | Text="Créer une série" |
||
31 | Command="{Binding GoToCreateSetCommand}" |
||
32 | Style="{StaticResource btnNormal}" |
||
33 | VerticalOptions="End" |
||
34 | HorizontalOptions="Center"/> |
||
35 | |||
36 | <Button
|
||
37 | Text="Reprendre la série" |
||
38 | Command="{Binding GoToLastSetCommand}" |
||
39 | Style="{StaticResource btnNormal}" |
||
40 | VerticalOptions="End" |
||
41 | HorizontalOptions="Center" |
||
42 | IsVisible="{Binding HasLastSet}"/> |
||
43 | |||
44 | <Button
|
||
45 | Text="Terminer la journée" |
||
46 | Command="{Binding GoToEndDayCommand}" |
||
47 | Style="{StaticResource btnNormal}" |
||
48 | VerticalOptions="End" |
||
49 | HorizontalOptions="Center"/> |
||
50 | </StackLayout>
|
||
51 | |||
52 | </StackLayout>
|
||
53 | <Grid Grid.RowSpan="1" IsVisible="{Binding IsBusy}"> |
||
54 | <Border StrokeThickness="0" |
||
55 | Background="Black" |
||
56 | Opacity="0.5" |
||
57 | Padding="20" |
||
58 | WidthRequest="160" |
||
59 | HeightRequest="160" |
||
60 | HorizontalOptions="Center" |
||
61 | VerticalOptions="Center" |
||
62 | StrokeShape="RoundRectangle 20"> |
||
63 | |||
64 | <VerticalStackLayout HorizontalOptions="Center" VerticalOptions="Center"> |
||
65 | <ActivityIndicator IsRunning="True" Color="White" /> |
||
66 | <Label Text="Chargement..." |
||
67 | FontSize="14" |
||
68 | TextColor="white" |
||
69 | HorizontalOptions="Center"/> |
||
70 | </VerticalStackLayout>
|
||
71 | </Border>
|
||
72 | </Grid>
|
||
73 | |||
74 | </Grid>
|
||
75 | 09d4a0de | lbihannic | </ContentPage> |