parent
d3f88c9542
commit
257ff11778
@ -0,0 +1,69 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="ParionsCuite.Views.Ajout_Paris.Ajouts_Pari">
|
||||||
|
<VerticalStackLayout>
|
||||||
|
|
||||||
|
<!--Grid menu-->
|
||||||
|
<Grid Margin="20">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Button Text="Invité" />
|
||||||
|
<Button Text="Participant" Grid.Column="1"/>
|
||||||
|
<Button Text="Pari" Grid.Column="2" BackgroundColor="Grey"/>
|
||||||
|
<Button Text="Information" Grid.Column="3" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Ajout Parieur-->
|
||||||
|
<Grid Margin="20">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="50"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="50"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<Label Text="Parieur(s) 1 :" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
<Label Grid.Column="2" Text="Parieur(s) 2 :" FontSize="Title" HorizontalOptions="End"/>
|
||||||
|
|
||||||
|
<Entry Grid.Row="1" Text="Entrer nom" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
<Button Grid.Row="1" Grid.Column="1" Text="+" Margin="5"/>
|
||||||
|
|
||||||
|
<Entry Grid.Row="1" Grid.Column="2" Text="Entrer nom" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
<Button Grid.Row="1" Grid.Column="3" Text="+" Margin="5"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Ajout But+Enjeux-->
|
||||||
|
<Grid Margin="20" >
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<Label Text="But du pari :" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
<Entry Grid.Column="1" Text="Entrer" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
|
||||||
|
<Label Grid.Row="1" Text="Enjeux du pari :" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
<Entry Grid.Row="1" Grid.Column="1" Text="Entrer" FontSize="Title" HorizontalOptions="Center"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Button ajouter-->
|
||||||
|
<StackLayout>
|
||||||
|
<Button Text="Ajouter Pari" HorizontalOptions="Start" FontSize="Title" Margin="500,30,0,0"/>
|
||||||
|
</StackLayout>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentView>
|
||||||
|
|
Loading…
Reference in new issue