parent
257ff11778
commit
eb7528691c
@ -1,11 +0,0 @@
|
|||||||
<?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.Participation.Participer">
|
|
||||||
<VerticalStackLayout>
|
|
||||||
<Label
|
|
||||||
Text="Welcome to .NET MAUI!"
|
|
||||||
VerticalOptions="Center"
|
|
||||||
HorizontalOptions="Center" />
|
|
||||||
</VerticalStackLayout>
|
|
||||||
</ContentView>
|
|
@ -1,9 +0,0 @@
|
|||||||
namespace ParionsCuite.Views.Participation;
|
|
||||||
|
|
||||||
public partial class Participer : ContentView
|
|
||||||
{
|
|
||||||
public Participer()
|
|
||||||
{
|
|
||||||
InitializeComponent();
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,75 @@
|
|||||||
|
<?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.Participations.Autre.Autres">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<!--Grid Participation-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Button Text="Nourriture" />
|
||||||
|
<Button Text="Boisson" Grid.Column="1" />
|
||||||
|
<Button Text="Autre" Grid.Column="2" BackgroundColor="Grey" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Grid Pincipale-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
<!--Input des boissons et quantité-->
|
||||||
|
<StackLayout Grid.Column="0" >
|
||||||
|
<Entry Text="Entrer autre" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Entry Text="Entrer quantité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<!--Grid quantité et boisson + output -->
|
||||||
|
<StackLayout Grid.Column="1" Margin="200,0,0,0">
|
||||||
|
<Grid Grid.Column="1" Margin="30">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="auto"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<!--Header Grille quantité+boisson-->
|
||||||
|
<Label Text="Quantité" Grid.Column="1" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Text="Autre" Grid.Column="0" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Grid.Column="2" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
|
||||||
|
<!--Content Grille quantité+boisson-->
|
||||||
|
<Label Text="Tire bouchon" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Label Text="1" Grid.Column="1" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</StackLayout>
|
||||||
|
</Grid>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentView>
|
||||||
|
|
@ -0,0 +1,75 @@
|
|||||||
|
<?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.Participations.Boisson.Boissons">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<!--Grid Participation-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Button Text="Nourriture" />
|
||||||
|
<Button Text="Boisson" Grid.Column="1" BackgroundColor="Grey"/>
|
||||||
|
<Button Text="Autre" Grid.Column="2" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Grid Pincipale-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
<!--Input des boissons et quantité-->
|
||||||
|
<StackLayout Grid.Column="0" >
|
||||||
|
<Entry Text="Entrer boisson" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Entry Text="Entrer quantité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<!--Grid quantité et boisson + output -->
|
||||||
|
<StackLayout Grid.Column="1" Margin="200,0,0,0">
|
||||||
|
<Grid Grid.Column="1" Margin="30">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="auto"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<!--Header Grille quantité+boisson-->
|
||||||
|
<Label Text="Boisson" Grid.Column="1" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Text="Quantité" Grid.Column="0" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Grid.Column="2" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
|
||||||
|
<!--Content Grille quantité+boisson-->
|
||||||
|
<Label Text="Vodka" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Label Text="2" Grid.Column="1" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</StackLayout>
|
||||||
|
</Grid>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentView>
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<?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.Participations.Nourriture">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<!--Grid Participation-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
<ColumnDefinition Width="300"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Button Text="Nourriture" BackgroundColor="Grey" />
|
||||||
|
<Button Text="Boisson" Grid.Column="1"/>
|
||||||
|
<Button Text="Autre" Grid.Column="2" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<!--Grid Pincipale-->
|
||||||
|
<Grid Margin="200,30,0,0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
<ColumnDefinition Width="200"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
<!--Input des nourritures et quantité-->
|
||||||
|
<StackLayout Grid.Column="0" >
|
||||||
|
<Entry Text="Entrer nourriture" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Entry Text="Entrer quantité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
||||||
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<!--Grid quantité et nourrite + output -->
|
||||||
|
<StackLayout Grid.Column="1" Margin="200,0,0,0">
|
||||||
|
<Grid Grid.Column="1" Margin="30">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="200" />
|
||||||
|
<ColumnDefinition Width="auto"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<!--Header Grille quantité+nourritre-->
|
||||||
|
<Label Text="Nourriture" Grid.Column="1" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Text="Quantité" Grid.Column="0" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
<Label Grid.Column="2" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
||||||
|
|
||||||
|
<!--Content Grille quantité+nourritre-->
|
||||||
|
<Label Text="Pizza" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Label Text="2" Grid.Column="1" Grid.Row="1" FontSize="Large" HorizontalOptions="Center"/>
|
||||||
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</StackLayout>
|
||||||
|
</Grid>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentView>
|
||||||
|
|
Loading…
Reference in new issue