C#窗体应用程序生成任意个数的随机点

  使用C#中的Random类进行自定义个数的随机点的生成,并显示在PictureBox控件中。

步骤如下:

1、创建C#窗体应用程序,添加画板-PictureBox控件、按钮-Button控件、随机点个数-numericUpDown控件(或TextBox控件)。

2、创建画图工具brush-SolidBrush,画板g-PictureBox(使用CreateGraphics()方法)。

3、创建类的实例:Random random = new Random();

4、点的存储:List rp = new List();

5、得到随机点的个数:int count = Convert.ToInt32(numericUpDown1.Text);

6、生成随机点:

int x = random.Next(g.Width - 4);

int y = random.Next(g.Height- 4);

pt = new Point(x, y);

7、画点: g.FillEllipse(brush, x, y, “点的宽”, “点的高”);

你可能感兴趣的:(c#,开发语言)