示例#1
0
文件: Form1.cs 项目: mlovyuan/Gomoku
 // 滑鼠移動時
 private void Form1_MouseMove(object sender, MouseEventArgs e)
 {
     if (board.Placed(e.X, e.Y))
     {
         this.Cursor = Cursors.Hand;
     }
     else
     {
         this.Cursor = Cursors.Default;
     }
 }