ProjetThe/ProjetTheAlone/View/FicRepasEncode.xaml

32 lines
1.8 KiB
XML

<Window x:Class="ProjetTheAlone.View.FicRepasEncode"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ProjetTheAlone.View"
mc:Ignorable="d"
Title="FicRepas" Height="491.666" Width="1137.834" WindowStartupLocation="CenterScreen" WindowStyle="None">
<Grid>
<Button x:Name="btnQuitter" Margin="974,414,29,25"
Content="Quitter" RenderTransformOrigin="0.017,0.519" Click="btnQuitter_Click" Height="Auto"/>
<StackPanel Margin="544,117,444,202">
<Label Content="Type de plat" FontFamily="Calibri" FontSize="16" Height="40"/>
<CheckBox Name="CheckSoupe" Content="Soupe" FontFamily="Calibri" FontSize="14" Height="40" Checked="CheckSoupe_Checked"/>
<CheckBox Name="CheckPlatP" Content="Plat principal" FontFamily="Calibri" FontSize="14" Height="40" Checked="CheckPlatP_Checked"/>
<CheckBox Name="CheckDessert" Content="Dessert" FontFamily="Calibri" FontSize="14" Height="40" Checked="CheckDessert_Checked"/>
</StackPanel>
<Calendar HorizontalAlignment="Left" Margin="51,103,0,0" VerticalAlignment="Top"/>
<ListView x:Name="lvPlat" Margin="352,107,609,215">
<ListView.View>
<GridView>
<GridViewColumn Width="160" Header="Plats"/>
</GridView>
</ListView.View>
</ListView>
<Label Content="Repas" HorizontalAlignment="Left" Margin="51,30,0,0" VerticalAlignment="Top" FontFamily="Calibri" FontSize="20"/>
</Grid>
</Window>