新建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));
}
转自C#实现鼠标进入按键范围后按键自动窗体内位置移动 - 司元朔 - 博客园 (cnblogs.com)
标签:鼠标,C#,button,Random,按键,按钮 From: https://www.cnblogs.com/hack747/p/17778045.html