39 lines
1.9 KiB
XML
39 lines
1.9 KiB
XML
<Window x:Class="Hermes.PreferencesModal"
|
|
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="Options" Height="250" Width="300"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterOwner"
|
|
Closing="Window_Closing">
|
|
<Grid Background="WhiteSmoke">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="160"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<TabControl Grid.Row="0" Margin="5,5,5,0">
|
|
<TabItem Header="Général">
|
|
<StackPanel Margin="5,5,5,5" VerticalAlignment="Top">
|
|
<Label>Code postal :</Label>
|
|
<TextBox HorizontalAlignment="Left" VerticalContentAlignment="Center" Height="23" Width="80"/>
|
|
<Label>Ville :</Label>
|
|
<TextBox HorizontalAlignment="Left" VerticalContentAlignment="Center" Height="23" Width="150"/>
|
|
</StackPanel>
|
|
</TabItem>
|
|
<TabItem Header="Envoi de SMS">
|
|
<StackPanel Margin="5,5,5,5" VerticalAlignment="Top">
|
|
<Label>Clé API ISendPro :</Label>
|
|
<TextBox HorizontalAlignment="Left" VerticalContentAlignment="Center" Height="23" Width="200"/>
|
|
</StackPanel>
|
|
</TabItem>
|
|
</TabControl>
|
|
<WrapPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,5,0">
|
|
<Button Height="25" Margin="0,0,10,0" Width="100" IsDefault="True">Enregister</Button>
|
|
<Button Height="25" Width="100">Annuler</Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</Window>
|