checkCorrectCell9x9() public method

public checkCorrectCell9x9 ( int x, int y ) : bool
x int
y int
return bool
コード例 #1
0
ファイル: Form1.cs プロジェクト: triplesic/SudokuNewProject
 private void Box6_TextChanged(object sender, EventArgs e)
 {
     int[,] arr = mapTableToArray(); CCC = new CheckCorrectCell(arr);
     if (CCC.checkCorrectCell9x9(0, 5) &&
         Box6.Text != "")
     {
         Box6.BackColor = Color.Red;
     }
     else
         Box6.BackColor = Color.White;
     congratulations9x9();
 }