/// <summary>
 /// Call it first to build the board, then add the ChessBoard to a panel
 /// </summary>
 public void BuildBoard(Panel p)
 {
     ChessBoard.Build(p);
     p.Controls.Add(ChessBoard);
 }