17 lines
788 B
XML
17 lines
788 B
XML
<Window x:Class="LetterWords.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="MainWindow" Height="346" Width="481">
|
|
<Viewbox Stretch="Uniform" VerticalAlignment="Top">
|
|
<StackPanel Width="379">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBox Name="textBox1" Width="218" AcceptsReturn="False" KeyUp="textBox1_KeyUp" />
|
|
<Button Content="Button" Height="23" Name="button1" Width="75" Click="button1_Click" />
|
|
</StackPanel>
|
|
<DockPanel Height="231" Width="376">
|
|
<TextBlock Name="textBlock1" />
|
|
</DockPanel>
|
|
</StackPanel>
|
|
</Viewbox>
|
|
</Window>
|