Initial commit — Wordle/letter word solver and scorer
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user