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.
Ohara_MAUI/Sources/Ohara/ModalBestiaire.xaml

21 lines
1.4 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="Ohara.ModalBestiaire"
Title="ModalBestiaire"
BackgroundColor="#e2edf1">
<Grid ColumnDefinitions="*,*" RowDefinitions="*,*,*,*,*" RowSpacing="10" BackgroundColor="#72a3b3" Padding="30" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<Label Text="Nom :" TextColor="White" FontAttributes="Bold"/>
<Entry Text="{Binding Nom}" Grid.Column="1"/>
<Label Text="Origine :" TextColor="White" FontAttributes="Bold" Grid.Row="1"/>
<Entry Text="{Binding Origine}" Grid.Column="1" Grid.Row="1"/>
<Label Text="Carectiristique :" TextColor="White" FontAttributes="Bold" Grid.Row="2"/>
<Editor Text="{Binding Caracteristique}" Grid.Column="1" Grid.Row="2" WidthRequest="300" HeightRequest="200"/>
<Label Text="Description :" TextColor="White" FontAttributes="Bold" Grid.Row="3" />
<Editor Text="{Binding Description}" Grid.Column="1" Grid.Row="3" WidthRequest="300" HeightRequest="200"/>
<Button Text="Annuler" Clicked="ButtonAnnuler_Clicked" Grid.Row="4" />
<Button Text="Confirmer" Clicked="ButtonConfirmer_Clicked" Grid.Column="1" Grid.Row="4" />
</Grid>
</ContentPage>