26 lines
1.3 KiB
XML
26 lines
1.3 KiB
XML
<Window x:Class="Intromat.Views.UserInputWindow"
|
|
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"
|
|
WindowStartupLocation="CenterOwner"
|
|
ShowInTaskbar="False"
|
|
ResizeMode="NoResize"
|
|
Style="{DynamicResource CustomWindowStyle}"
|
|
mc:Ignorable="d" SizeToContent="Height"
|
|
Closing="UserInputWindow_OnClosing"
|
|
Title="Intromat" MinHeight="50" Width="300">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock x:Name="Header" Grid.Row="0" Text="Enter data:" Margin="5" />
|
|
<TextBox x:Name="Input" Grid.Row="1" Text="" Margin="5,0" TextChanged="Input_OnTextChanged" />
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="5">
|
|
<Button x:Name="ButtonOK" IsDefault="True" Width="60" Margin="0,0,2,0" Click="ButtonOK_OnClick">OK</Button>
|
|
<Button x:Name="ButtonCancel" IsCancel="True" Width="60" Click="ButtonCancel_OnClick">Cancel</Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |