新建winform窗体程序
添加button控件
在事件中选择 MouseEnter
代码如下
private void button_MouseEnter(object sender, EventArgs e)
{
//给按钮一个新的坐标
//这个按钮活动的最大宽度就是 窗体的宽度减去按钮的宽度
int x = this.ClientSize.Width - button.Width;
int y = this.ClientSize.Height - button.Height;
Random r = new Random();
button.Location = new Point(r.Next(0, x + 1), r.Next(0, y + 1));
}
时间: 2024-10-07 06:55:50