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.
23 lines
1.7 KiB
23 lines
1.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="Ohara.ModalPersonnage"
|
|
Title="ModalPersonnage"
|
|
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="Prime :" TextColor="White" FontAttributes="Bold" Grid.Column="2"/>
|
|
<Entry Text="{Binding Prime}" Grid.Column="3" WidthRequest="300"/>
|
|
<Label Text="Epithete :" TextColor="White" FontAttributes="Bold" Grid.Row="1"/>
|
|
<Entry Text="{Binding Epithete}" Grid.Column="1" Grid.Row="1"/>
|
|
<Label Text="Origine :" TextColor="White" FontAttributes="Bold" Grid.Column="2" Grid.Row="1"/>
|
|
<Entry Text="{Binding Origine}" Grid.Column="3" Grid.Row="1"/>
|
|
<Label Text="Description :" TextColor="White" FontAttributes="Bold" Grid.Row="3" />
|
|
<Editor Text="{Binding Description}" Grid.Column="1" Grid.Row="3" WidthRequest="300" HeightRequest="200"/>
|
|
<Label Text="Citation :" TextColor="White" FontAttributes="Bold" Grid.Column="2" Grid.Row="3"/>
|
|
<Editor Text="{Binding Citation}" Grid.Column="3" Grid.Row="3"/>
|
|
<Button Text="Annuler" Clicked="ButtonAnnuler_Clicked" Grid.Row="4" Grid.ColumnSpan="2" WidthRequest="200" />
|
|
<Button Text="Confirmer" Clicked="ButtonConfirmer_Clicked" Grid.Column="2" Grid.Row="4" Grid.ColumnSpan="2" WidthRequest="200"/>
|
|
</Grid>
|
|
</ContentPage> |