inraetemplate / INRAETemplate / View / AboutView.xaml @ 7b67ff55
Historique | Voir | Annoter | Télécharger (2,152 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 |
x:Class="INRAETemplate.View.AboutView" |
5 |
xmlns:tools="clr-namespace:INRAETemplate.View.Tools" |
6 |
Title="About"> |
7 |
<StackLayout BackgroundColor="{StaticResource InraePrimary}" Spacing="0"> |
8 |
<tools:ConnectionIndicatorView /> |
9 |
<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 |
Text="A propos" |
22 |
VerticalOptions="Center" |
23 |
HorizontalOptions="Center" |
24 |
Style="{StaticResource textTitre}"/> |
25 |
</Frame>
|
26 |
<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 |
</StackLayout>
|
39 |
</Frame>
|
40 |
</StackLayout>
|
41 |
</StackLayout>
|
42 |
</ScrollView>
|
43 |
</StackLayout>
|
44 |
</ContentPage>
|