root / GES_PAC / View / EndSetView.xaml @ 957b1f34
Historique | Voir | Annoter | Télécharger (2,729 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.EndSetView" |
7 |
x:DataType="vm:EndSetViewModel"> |
8 |
|
9 |
<Grid>
|
10 |
<StackLayout BackgroundColor="White" Spacing="50"> |
11 |
|
12 |
<tools:ConnectionIndicatorView /> |
13 |
<ScrollView>
|
14 |
<StackLayout Spacing="50"> |
15 |
|
16 |
<Label Text="Cloturer la série ?" |
17 |
FontSize="22" |
18 |
FontAttributes="Bold" |
19 |
HorizontalOptions="Center"/> |
20 |
|
21 |
<Label
|
22 |
Text="{Binding NumberAnimal, StringFormat='Nombre d animaux étudiés : {0}'}" |
23 |
FontSize="16" |
24 |
HorizontalOptions="Center" /> |
25 |
|
26 |
<Label
|
27 |
Text="{Binding NumberMeasure, StringFormat='Nombre de mesures : {0}'}" |
28 |
FontSize="16" |
29 |
HorizontalOptions="Center" /> |
30 |
|
31 |
<Label
|
32 |
Text="{Binding NumberBehaviour, StringFormat='Nombre de comportements : {0}'}" |
33 |
FontSize="16" |
34 |
HorizontalOptions="Center" /> |
35 |
|
36 |
</StackLayout>
|
37 |
</ScrollView>
|
38 |
<StackLayout
|
39 |
Margin="10" |
40 |
HorizontalOptions="CenterAndExpand" |
41 |
Orientation="Horizontal" |
42 |
VerticalOptions="FillAndExpand"> |
43 |
|
44 |
<Button
|
45 |
Text="Confirmer" |
46 |
Command="{Binding GoToSetListCommand}" |
47 |
Style="{StaticResource btnNormal}" |
48 |
VerticalOptions="End"/> |
49 |
</StackLayout>
|
50 |
</StackLayout>
|
51 |
<Grid Grid.RowSpan="1" IsVisible="{Binding IsBusy}"> |
52 |
<Border StrokeThickness="0" |
53 |
Background="Black" |
54 |
Opacity="0.5" |
55 |
Padding="20" |
56 |
WidthRequest="160" |
57 |
HeightRequest="160" |
58 |
HorizontalOptions="Center" |
59 |
VerticalOptions="Center" |
60 |
StrokeShape="RoundRectangle 20"> |
61 |
|
62 |
<VerticalStackLayout HorizontalOptions="Center" VerticalOptions="Center"> |
63 |
<ActivityIndicator IsRunning="True" Color="White" /> |
64 |
<Label Text="Chargement..." |
65 |
FontSize="14" |
66 |
TextColor="white" |
67 |
HorizontalOptions="Center"/> |
68 |
</VerticalStackLayout>
|
69 |
</Border>
|
70 |
</Grid>
|
71 |
|
72 |
</Grid>
|
73 |
</ContentPage>
|