-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordle.xaml
23 lines (23 loc) · 996 Bytes
/
Wordle.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<UserControl x:Class="Clue.Wordle"
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:Clue"
mc:Ignorable="d" Height="500" Width="800"
PreviewKeyDown="Window_PreviewKeyDown" Focusable="True">
<UserControl.Resources>
<Style x:Key="GridItemStyle" TargetType="Border">
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Margin" Value="5" />
</Style>
</UserControl.Resources>
<Grid>
<StackPanel>
<TextBlock FontSize="50" TextAlignment="Center">Wordle</TextBlock>
<Grid x:Name="Guess">
</Grid>
</StackPanel>
</Grid>
</UserControl>