コード例 #1
0
ファイル: Game.xaml.cs プロジェクト: icebeam7/Ahorcado
 void btnPlay_Clicked(object sender, EventArgs e)
 {
     timer.KillTimer ();
     timer = null;
     StartNewGame ();
 }
コード例 #2
0
ファイル: Game.xaml.cs プロジェクト: icebeam7/Ahorcado
 void StartTimer()
 {
     if (timer == null)
         timer = new TimerClass (this);
 }