private void Box34_TextChanged(object sender, EventArgs e)
{
int[,] arr = mapTableToArray(); CCC = new CheckCorrectCell(arr);
if (CCC.checkCorrectCell9x9(3, 6) &&
Box34.Text != "")
{
Box34.BackColor = Color.Red;
}
else
Box34.BackColor = Color.White;
congratulations9x9();
}