root / GES_PAC / View / SetListView.xaml @ ba296a27
Historique | Voir | Annoter | Télécharger (2,059 ko)
1 | 09d4a0de | lbihannic | <?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.SetListView" |
||
7 | x:DataType="vm:SetListViewModel"> |
||
8 | |||
9 | <Grid>
|
||
10 | <StackLayout BackgroundColor="White" Spacing="50"> |
||
11 | |||
12 | <tools:ConnectionIndicatorView /> |
||
13 | <ScrollView>
|
||
14 | <StackLayout Spacing="100"> |
||
15 | |||
16 | <Label Text="Pas de série disponible" |
||
17 | FontSize="18" |
||
18 | HorizontalOptions="Center"/> |
||
19 | |||
20 | |||
21 | </StackLayout>
|
||
22 | </ScrollView>
|
||
23 | <StackLayout
|
||
24 | Margin="10" |
||
25 | HorizontalOptions="CenterAndExpand" |
||
26 | Orientation="Horizontal" |
||
27 | VerticalOptions="FillAndExpand"> |
||
28 | |||
29 | <Button
|
||
30 | Text="Créer une série" |
||
31 | Command="{Binding GoToCreateSetCommand}" |
||
32 | Style="{StaticResource btnNormal}" |
||
33 | VerticalOptions="End"/> |
||
34 | </StackLayout>
|
||
35 | </StackLayout>
|
||
36 | <Grid Grid.RowSpan="1" IsVisible="{Binding IsBusy}"> |
||
37 | <Border StrokeThickness="0" |
||
38 | Background="Black" |
||
39 | Opacity="0.5" |
||
40 | Padding="20" |
||
41 | WidthRequest="160" |
||
42 | HeightRequest="160" |
||
43 | HorizontalOptions="Center" |
||
44 | VerticalOptions="Center" |
||
45 | StrokeShape="RoundRectangle 20"> |
||
46 | |||
47 | <VerticalStackLayout HorizontalOptions="Center" VerticalOptions="Center"> |
||
48 | <ActivityIndicator IsRunning="True" Color="White" /> |
||
49 | <Label Text="Chargement..." |
||
50 | FontSize="14" |
||
51 | TextColor="white" |
||
52 | HorizontalOptions="Center"/> |
||
53 | </VerticalStackLayout>
|
||
54 | </Border>
|
||
55 | </Grid>
|
||
56 | |||
57 | </Grid>
|
||
58 | </ContentPage> |