38 lines
1.8 KiB
XML
38 lines
1.8 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"
|
|
Icon="hermes.png"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterOwner"
|
|
Closing="Window_Closing">
|
|
<Grid>
|
|
<StackPanel>
|
|
<TabControl Margin="5,5,5,5" MinHeight="160">
|
|
<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>
|
|
</StackPanel>
|
|
<WrapPanel HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="10,10,10,10">
|
|
<Button Height="25" Margin="0,0,10,0" Width="100">Enregister</Button>
|
|
<Button Height="25" Width="100">Annuler</Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</Window>
|