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