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