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

你可能感兴趣的文章
mysqldump 导出数据库中每张表的前n条
查看>>
mysqldump: Got error: 1044: Access denied for user ‘xx’@’xx’ to database ‘xx’ when using LOCK TABLES
查看>>
Mysqldump参数大全(参数来源于mysql5.5.19源码)
查看>>
mysqldump备份时忽略某些表
查看>>
mysqldump实现数据备份及灾难恢复
查看>>
mysqldump数据库备份无法进行操作只能查询 --single-transaction
查看>>
mysqldump的一些用法
查看>>
mysqli
查看>>
MySQLIntegrityConstraintViolationException异常处理
查看>>
mysqlreport分析工具详解
查看>>
MySQLSyntaxErrorException: Unknown error 1146和SQLSyntaxErrorException: Unknown error 1146
查看>>
Mysql_Postgresql中_geometry数据操作_st_astext_GeomFromEWKT函数_在java中转换geometry的16进制数据---PostgreSQL工作笔记007
查看>>
mysql_real_connect 参数注意
查看>>
mysql_secure_installation初始化数据库报Access denied
查看>>
MySQL_西安11月销售昨日未上架的产品_20161212
查看>>
Mysql——深入浅出InnoDB底层原理
查看>>
MySQL“被动”性能优化汇总
查看>>
MySQL、HBase 和 Elasticsearch:特点与区别详解
查看>>
MySQL、Redis高频面试题汇总
查看>>
MYSQL、SQL Server、Oracle数据库排序空值null问题及其解决办法
查看>>