You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.7 KiB
78 lines
3.7 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Views.DetailAnimal"
|
|
Title="{Binding Nom}">
|
|
<ScrollView>
|
|
<VerticalStackLayout>
|
|
<Button Text="Supprimer"
|
|
Background="{StaticResource Primary}"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="End"
|
|
Margin="20"
|
|
Clicked="Button_OnClick"/>
|
|
<Image Source="{Binding Image}"
|
|
MaximumWidthRequest="300"
|
|
Margin="20"
|
|
HorizontalOptions="Center"/>
|
|
<Entry Text="{Binding Nom}"
|
|
HorizontalOptions="Center"/>
|
|
<Border Stroke="{StaticResource Secondary}"
|
|
StrokeThickness="2"
|
|
Margin="20"
|
|
Padding="10"
|
|
Background="{StaticResource Primary}"
|
|
VerticalOptions="Start"
|
|
Grid.Column="1">
|
|
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto, Auto"
|
|
ColumnDefinitions="*, *"
|
|
RowSpacing="8">
|
|
<Label FontAttributes="Bold"
|
|
Text="Date de naissance"/>
|
|
<Entry Grid.Column="1"
|
|
HorizontalOptions="End"
|
|
Text="{Binding DateNaissance}"/>
|
|
<Label Grid.Row="1"
|
|
FontAttributes="Bold"
|
|
Text="Sexe"/>
|
|
<Entry Grid.Column="2"
|
|
Grid.Row="1"
|
|
HorizontalOptions="End"
|
|
Text="{Binding Sexe}"/>
|
|
<Label Grid.Row="2"
|
|
FontAttributes="Bold"
|
|
Text="Date d'adoption"/>
|
|
<Entry Grid.Column="2"
|
|
Grid.Row="2"
|
|
HorizontalOptions="End"
|
|
Text="{Binding DateAdoption}"/>
|
|
<Label Grid.Row="3"
|
|
FontAttributes="Bold"
|
|
Text="Taille"/>
|
|
<HorizontalStackLayout Grid.Column="2"
|
|
Grid.Row="3"
|
|
HorizontalOptions="End">
|
|
<Entry Text="{Binding Taille}"/>
|
|
<Label Text=" cm" VerticalOptions="Center"/>
|
|
</HorizontalStackLayout>
|
|
<Label Grid.Row="4"
|
|
FontAttributes="Bold"
|
|
Text="Poids"/>
|
|
<HorizontalStackLayout Grid.Column="2"
|
|
Grid.Row="4"
|
|
HorizontalOptions="End">
|
|
<Entry Text="{Binding Poids}"/>
|
|
<Label Text=" kg" VerticalOptions="Center"/>
|
|
</HorizontalStackLayout>
|
|
<Label Grid.Row="5"
|
|
FontAttributes="Bold"
|
|
Text="Alimentation"/>
|
|
<Entry Grid.Column="2"
|
|
Grid.Row="5"
|
|
HorizontalOptions="End"
|
|
Text="{Binding Alimentation}"/>
|
|
</Grid>
|
|
</Border>
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |