36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<Window x:Class="Hermes.SearchModal"
|
|
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="Rechercher" Height="250" Width="370"
|
|
ResizeMode="NoResize"
|
|
Closing="Window_Closing">
|
|
<Grid>
|
|
<WrapPanel>
|
|
<GroupBox Header="Age" Margin="10,10,0,0" Width="130">
|
|
<StackPanel>
|
|
<RadioButton Margin="5,5,5,0">Supérieur à</RadioButton>
|
|
<RadioButton Margin="5,5,5,0">Inférieur à</RadioButton>
|
|
<RadioButton Margin="5,5,5,0">Egal à</RadioButton>
|
|
<TextBox Margin="5,5,5,5"/>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<StackPanel Margin="10,10,0,0">
|
|
<Label>Profession :</Label>
|
|
<TextBox HorizontalAlignment="Left" Width="130"/>
|
|
<Label>Adresse :</Label>
|
|
<TextBox Width="200"/>
|
|
</StackPanel>
|
|
<GroupBox Header="Résidence" Margin="10,10,0,0">
|
|
<StackPanel>
|
|
<RadioButton Margin="5,5,5,0">Principale</RadioButton>
|
|
<RadioButton Margin="5,5,5,5">Secondaire</RadioButton>
|
|
</StackPanel>
|
|
</GroupBox>
|
|
</WrapPanel>
|
|
<Button Margin="246,183,10,10">Rechercher</Button>
|
|
</Grid>
|
|
</Window> |