展开全部
在 Form1 的 Load 事件里写:
// 获得当前屏幕分辨率宽度
int width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width;
// 获得当前屏幕分辨率高度
int height = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height;
System.Random rand = new System.Random();
// 生成随机X坐标
int x = rand.Next(0, width);
// 生成随机Y坐标
int y = rand.Next(0, height);
// 将当前窗体设置为随机坐标
this.Location = new System.Drawing.Point(x, y);
追问
可以了,谢谢。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询