Sudoku/Complete/Models/LittleCell.xaml

12 lines
401 B
XML

<UserControl x:Class="SudokuWeek4.Models.LittleCell"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Sudoku="clr-namespace:SudokuWeek4">
<Border Name="smallBorder" BorderThickness="4">
<Grid>
<Grid Name="inputGrid" />
<UniformGrid Name="optionsGrid" />
</Grid>
</Border>
</UserControl>