[Solved] Draw samurai sudoku grid on WPF

Example for demonstration. It is not as difficult as in the picture in the question. But it will not be a problem for you to supplement it. public class SudokuCell { public Thickness Border { get; } public int Value { get; set; } public int Row { get; } public int Column { get; … Read more