C#/WinForm 自定义控件绘制章鱼

1.创建OctopusControl类,继承Control类

2.定义定时器刷新,这里我们使用System.Timers.Timer定时器,逻辑处理与UI线程分开以便减少对UI线程的负载,如下:

_timer_Elapsed事件主要用定时生成数据供UI现场绘制图像,如下:

3.重写OnPaint方法,供UI线程绘制图像,最好用DrawRectangles绘制,如下:

到此基本完成,但是绘制动画图像我们一般需要开启双缓冲,防止动画闪烁,增加动画流畅,如下:

全部代码:

cs 复制代码
 public class OctopusControl : Control
    {
        private readonly System.Timers.Timer _timer;
        public OctopusControl()
        {
            SetStyle(
          ControlStyles.ResizeRedraw
          | ControlStyles.DoubleBuffer
          | ControlStyles.UserPaint
          | ControlStyles.AllPaintingInWmPaint
          | ControlStyles.SupportsTransparentBackColor,
          true
          );

            this.BackColor = Color.Black;
            _timer = new System.Timers.Timer();
            _timer.Interval = 50;
            _timer.Elapsed += _timer_Elapsed;
        }
        public void Start()
        {
            _timer.Start();
        }
        public void Stop() { _timer.Stop(); }
        private double t = 0d;
        RectangleF[] doubles=new RectangleF[200*200];
        private volatile bool _isRun = false;
        private void _timer_Elapsed(object? sender, System.Timers.ElapsedEventArgs e)
        {
            if (_isRun) return;
            _isRun = true;
            t += Math.PI / 120;
            int j = 0;
            for (int y = 100; y < 300; y++)
            {
                for (int x = 100; x < 300; x++)
                {
                    var k = x / 8f - 25;
                    var e2 = y / 8f - 25;
                    var d = 5 * Math.Cos(Mag(k, e2) / 3);
                    var newX = (x + (d * k + k * 2 * Math.Atan(9 * Math.Cos(e2 * 2 - t / 2))) * Math.Sin(d * 2.5d - t)) / 2 + 100;
                    var newY = d * 13 + d * 3 * (3 + Math.Cos(d * 3 - t)) + d * e2 + 200;
                    doubles[j++] = new RectangleF((float)newX, (float)newY, 0.1f, 0.1f);
                }
            }
            this.Invalidate();
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            Graphics g = e.Graphics;
            g.Smooth();
            Draw(g);
            g.Smooth(false);
        }
        private void Draw(Graphics g)
        {
            if (!_isRun) return;

            Stopwatch stopwatch = Stopwatch.StartNew();

            g.DrawRectangles(Pens.Green, doubles);
            stopwatch.Stop();
            g.DrawString($"{stopwatch.ElapsedMilliseconds}ms", this.Font, Brushes.Green, 10, 10);

            _isRun = false;
        }
        private double Mag(double x1, double y1) => Dist(0, 0, x1, y1);
        private double Dist(double x1, double y1, double x2, double y2) => Math.Sqrt(Math.Pow(x1 - x2, 2) + Math.Pow(y1 - y2, 2));

        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);
        }
    }
相关推荐
Hello.Reader4 分钟前
全面解析 Golang Gin 框架
开发语言·golang·gin
禁默15 分钟前
深入浅出:AWT的基本组件及其应用
java·开发语言·界面编程
Jasmine_llq22 分钟前
《 火星人 》
算法·青少年编程·c#
Code哈哈笑24 分钟前
【Java 学习】深度剖析Java多态:从向上转型到向下转型,解锁动态绑定的奥秘,让代码更优雅灵活
java·开发语言·学习
程序猿进阶27 分钟前
深入解析 Spring WebFlux:原理与应用
java·开发语言·后端·spring·面试·架构·springboot
qq_4336184430 分钟前
shell 编程(二)
开发语言·bash·shell
charlie11451419144 分钟前
C++ STL CookBook
开发语言·c++·stl·c++20
袁袁袁袁满44 分钟前
100天精通Python(爬虫篇)——第113天:‌爬虫基础模块之urllib详细教程大全
开发语言·爬虫·python·网络爬虫·爬虫实战·urllib·urllib模块教程
ELI_He9991 小时前
PHP中替换某个包或某个类
开发语言·php
m0_748236111 小时前
Calcite Web 项目常见问题解决方案
开发语言·前端·rust