Esempio n. 1
0
 private void OnEndClick(object sender, EventArgs args)
 {
     IGSGame.ToMove(IGSGame.MovesMade);
     EnableButtons();
     Invalidate();
 }
Esempio n. 2
0
 private void OnBackClick(object sender, EventArgs args)
 {
     IGSGame.ToPreviousMove();
     EnableButtons();
     Invalidate();
 }
Esempio n. 3
0
 private void OnForwardClick(object sender, EventArgs args)
 {
     IGSGame.ToNextMove();
     EnableButtons();
     Invalidate();
 }
Esempio n. 4
0
 private void OnStartClick(object sender, EventArgs args)
 {
     IGSGame.ToMove(0);
     EnableButtons();
     Invalidate();
 }