c#picturebox 坐标移动问题

2025-01-03 14:03:35
推荐回答(3个)
回答1:

自定义一个Point类型的数组,然后用Random对象去随机不大于数组长度范的数字,用这个数字作下标,去数组里选择对应的Point对象,赋给PictureBox的Location属性就行了。
Point[] pts = new Point[]{new Point(10,10),new Point(102,39),new Point(450,261),new Point(137,252)};
Random ranObj = new Random();
Point location = pts[ranObj.Next(0,pts.Length)];
pictureBox.Location = locationl

回答2:

随机数据可以用Random来生成。
改变图片位置可通过设置PictureBox的Location。

回答3:

设置距离边距的距离