43 lines
1.9 KiB
XML
43 lines
1.9 KiB
XML
<Window x:Class="Hermes.CitoyenModal"
|
|
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:Hermes"
|
|
mc:Ignorable="d"
|
|
Title="Informations" Height="279" Width="640"
|
|
ResizeMode="NoResize"
|
|
Closing="Window_Closing">
|
|
<Grid>
|
|
<WrapPanel>
|
|
<StackPanel Margin="10,10,0,0" VerticalAlignment="Top">
|
|
<Label>Nom :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="150"/>
|
|
<Label>Prénom :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="150"/>
|
|
<Label>Age :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="30"/>
|
|
<Label>Adresse :</Label>
|
|
<TextBox Width="250"/>
|
|
<Label>Profession :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="150"/>
|
|
</StackPanel>
|
|
<GroupBox Header="Résidence" Margin="10,10,0,0" VerticalAlignment="Top">
|
|
<StackPanel>
|
|
<RadioButton Margin="5,5,5,0">Principale</RadioButton>
|
|
<RadioButton Margin="5,5,5,5">Secondaire</RadioButton>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox Header="Contact" Margin="10,10,0,0" VerticalAlignment="Top">
|
|
<StackPanel>
|
|
<Label>E-Mail :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="200"/>
|
|
<Label>Téléphone :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="150"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
</WrapPanel>
|
|
<Button Margin="516,212,10,10">OK</Button>
|
|
</Grid>
|
|
</Window>
|