博客
关于我
C#更新数组实现动态曲线
阅读量:668 次
发布时间:2019-03-15

本文共 2102 字,大约阅读时间需要 7 分钟。

 
private void timer定时_Tick(object sender, EventArgs e)        {            if (Flash == 0)          //当刷新时            {                Pen middleLine = new Pen(Color.White);                SolidBrush blackBrush = new SolidBrush(Color.Black);   //定义了一个单色的黑色画笔                graphic = Graphics.FromImage(pictureBox图像.Image);                graphic.FillRectangle(blackBrush, 0, 0, 500, 251);     //将画布填充为黑色矩形                            Point pt1 = new Point(0, 125);          //中间线的两点                Point pt2 = new Point(500, 125);                graphic.DrawLine(middleLine, pt1, pt2);        //画中间线            }            Random random = new Random();            pointList = new Point[50];    //实例化坐标数组*            int data = random.Next(-800, 800);   //生成一个随机数           // Point p;       //申明一个坐标变量            for (int i = 1; i <50 ; i++)         //更新数组            {                N[i - 1] = N[i];                pointList[i - 1] = pointList[i];      //更新点的坐标            }            N[49] = data;            pointList[49].X = 49 * time;            pointList[49].Y = data;                             if (Flash == 0)            {                if (Flash == 0)                {                    int k1 = 0, k2 = 0;                    for (int i = 0; i < 49; i++)                    {                        k1 = (int)(lineD - N[i] / times);                        k2 = (int)(lineD - N[i + 1] / times);                        graphic.FillEllipse(new SolidBrush(Color.Red), (i * time), k1, 4, 4);   //填充边框所定义的椭圆内部,由椭圆边框左上角坐标和椭圆宽度和高度组成                        //graphic.DrawLine(new Pen(Color.FromArgb(255, 255, 0), 1), new Point(i * time, k1), new Point((i + 1) * time, k2));   //两点之间连线                        pointList[i].X = i * time;  pointList[i].Y = k1;                     }                    graphic.FillEllipse(new SolidBrush(Color.Red), (49 * time), k2, 4, 4);                    graphic.DrawCurve(new Pen(Color.FromArgb(255, 255, 0), 1), pointList, 0.5f);                                       }                pictureBox图像.Refresh();                 //刷新picturebox            }       }

 

 

 

转载地址:http://iaamz.baihongyu.com/

你可能感兴趣的文章
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>