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