I have found my mistake, and I am really sorry about taking your time. I noticed that I didn’t place my function to the event handler.
private void label3_Click(object sender, EventArgs e)
{
count++;
chechTurn();
printXorO(_01);
checkWin_Loose_Draw();// here ...
_01.Enabled = false;
}
2
solved Can someone help me with my tic tac toe logic