博客
关于我
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/

你可能感兴趣的文章
MyEcplise中SpringBoot怎样定制启动banner?
查看>>
MyPython
查看>>
MTD技术介绍
查看>>
MySQL
查看>>
MySQL
查看>>
mysql
查看>>
MTK Android 如何获取系统权限
查看>>
MySQL - 4种基本索引、聚簇索引和非聚索引、索引失效情况、SQL 优化
查看>>
MySQL - ERROR 1406
查看>>
mysql - 视图
查看>>
MySQL - 解读MySQL事务与锁机制
查看>>
MTTR、MTBF、MTTF的大白话理解
查看>>
mt_rand
查看>>
mysql -存储过程
查看>>
mysql /*! 50100 ... */ 条件编译
查看>>
mudbox卸载/完美解决安装失败/如何彻底卸载清除干净mudbox各种残留注册表和文件的方法...
查看>>
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>