Initial commit — Wordle/letter word solver and scorer

This commit is contained in:
2026-05-10 03:01:15 +00:00
commit 900ace491f
41 changed files with 391999 additions and 0 deletions
+16
View File
@@ -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>