Hermes/InputWindow.xaml

26 lines
1.3 KiB
Plaintext
Raw Normal View History

<Window x:Class="Hermes.InputWindow"
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"
ResizeMode="NoResize"
WindowStartupLocation="CenterOwner"
Title="" Height="140" Width="250">
<Grid Background="WhiteSmoke">
<Grid.RowDefinitions>
<RowDefinition Height="70"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="10" VerticalAlignment="Center">
<TextBlock Name="msgTextBlock" Margin="0,0,0,10"/>
<TextBox Name="inputTextBox" Height="23" HorizontalAlignment="Left" Width="200"/>
</StackPanel>
<WrapPanel Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,5,0">
<Button Margin="0,0,10,0" Height="25" Width="80" IsDefault="True" Click="Valider_Click">Valider</Button>
<Button Height="25" Width="80" Click="Annuler_Click">Annuler</Button>
</WrapPanel>
</Grid>
</Window>