/// <summary>
 /// Reset the m_ScoreBox text.
 /// </summary>
 private void ResetScoreBox()
 {
     m_ScoreTextBox.Text = "Player score: " + m_Connect4Game.GetPlayersScore()[0] + " / AI score: " + m_Connect4Game.GetPlayersScore()[1]
                           + "\nCurrent grid score for AI : 0";
 }