加入收藏 | 设为首页 | 会员中心 | 我要投稿 北几岛 (https://www.beijidao.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

c#随机画圆

发布时间:2021-07-06 05:39:08 所属栏目:大数据 来源: https://blog.csdn.net/summoxj
导读:代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Wind

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;


namespace WindowsFormsApp5
{
? ? public partial class Form1 : Form
? ? {
? ? ? ? public Form1()
? ? ? ? {
? ? ? ? ? ? InitializeComponent();
? ? ? ? }
? ? ? ? Random random = new Random();


? ? ? ? Color getRandomColor()
? ? ? ? {
? ? ? ? ? ? return Color.FromArgb(
? ? ? ? ? ? ? ? random.Next(256),
? ? ? ? ? ? ? ? random.Next(256),
? ? ? ? ? ? ? ? random.Next(256));
? ? ? ? }


? ? ? ? private void button1_Click(object sender,EventArgs e)
? ? ? ? {
? ? ? ? ? ? Graphics g = this.CreateGraphics();
? ? ? ? ? ? int x0 = this.Width / 2;
? ? ? ? ? ? int y0 = this.Height / 2;
? ? ? ? ? ? for (int r = 0; r < this.Height / 2; r++)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? g.DrawEllipse(new Pen(getRandomColor(),1),
? ? ? ? ? ? ? ? ? ? x0 - r,y0 - r,r * 2,r * 2);
? ? ? ? ? ? }
? ? ? ? ? ? g.Dispose();
? ? ? ? }
? ? }
}

(编辑:北几岛)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读