Example #1
0
 //printer of the Sudoku and gridHandler doesn't change in the process of SudokuApp running
 public void InitNewAppHandler(DataGridView dataGridView)
 {
     gridHandler = new GridHandler(dataGridView);
     printer     = new SudokuPrinter(gridHandler);
 }
Example #2
0
 public SudokuGenerator(GridHandler gh)
 {
     this.gh = gh;
     rnd     = new Random();
 }
Example #3
0
 public SudokuPrinter(GridHandler gh)
 {
     this.gh = gh;
 }