inraetemplate / INRAETemplate / View / AboutView.xaml @ master
Historique | Voir | Annoter | Télécharger (2,152 ko)
1 | fa2aa88f | ajournaux | <?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 | x:Class="INRAETemplate.View.AboutView" |
||
5 | 7b67ff55 | ajournaux | xmlns:tools="clr-namespace:INRAETemplate.View.Tools" |
6 | fa2aa88f | ajournaux | Title="About"> |
7 | <StackLayout BackgroundColor="{StaticResource InraePrimary}" Spacing="0"> |
||
8 | 7b67ff55 | ajournaux | <tools:ConnectionIndicatorView /> |
9 | fa2aa88f | ajournaux | <ScrollView>
|
10 | <StackLayout Spacing="0"> |
||
11 | <StackLayout
|
||
12 | Margin="10" |
||
13 | HorizontalOptions="FillAndExpand" |
||
14 | VerticalOptions="FillAndExpand"> |
||
15 | <Frame HorizontalOptions="FillAndExpand" |
||
16 | VerticalOptions="FillAndExpand" CornerRadius="5"> |
||
17 | |||
18 | <StackLayout>
|
||
19 | <Frame BorderColor="{StaticResource InraePrimary}" Margin="0,0,0,20"> |
||
20 | <Label
|
||
21 | 7b67ff55 | ajournaux | Text="A propos" |
22 | fa2aa88f | ajournaux | VerticalOptions="Center" |
23 | HorizontalOptions="Center" |
||
24 | Style="{StaticResource textTitre}"/> |
||
25 | </Frame>
|
||
26 | 7b67ff55 | ajournaux | <Grid ColumnDefinitions="70*,30*" RowDefinitions="auto"> |
27 | <Label
|
||
28 | Grid.Row="0" |
||
29 | Grid.Column="0" |
||
30 | Text="Version Templace :" |
||
31 | Style="{StaticResource textLabel}"/> |
||
32 | <Label
|
||
33 | Grid.Row="0" |
||
34 | Grid.Column="1" |
||
35 | Text="{Binding VersionTemplate}" |
||
36 | Style="{StaticResource textLabel}"/> |
||
37 | </Grid>
|
||
38 | fa2aa88f | ajournaux | </StackLayout>
|
39 | </Frame>
|
||
40 | </StackLayout>
|
||
41 | </StackLayout>
|
||
42 | </ScrollView>
|
||
43 | </StackLayout>
|
||
44 | </ContentPage> |