记录|Form1中嵌套Form2时的频闪问题解决[不同于常见的三部曲]

目录


前言

参考文章:
C#画图解决闪烁问题

解决winform中重绘时控件闪烁的问题\](panel1.GetType().GetProperty("DoubleBuffered",System.Reflection.BindingFlags.Instance \| System.Reflection.BindingFlags.NonPublic).SetValue(panel1, true, null)😉 参考视频: [C# WinForm 制作一个渐变背景Panel](https://www.bilibili.com/video/BV1V64y1F7Ny/?spm_id_from=333.337.search-card.all.click&vd_source=b52581a539d7e1c5d09635d747995504)

没想到进行自动化页面布局后,Form之间的嵌套会出现频闪问题。

尝试了常见的设置双缓冲方法,给组件,给Form都试过,结果都无法解决闪屏的问题。

后来直接采用视频中的自己创建组件的方式解决了问题。


一、常见的解决方案

  • 就是开启组件的双缓冲方法
csharp 复制代码
panel1.GetType().GetProperty("DoubleBuffered",System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(panel1, true, null);

或者

csharp 复制代码
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw |ControlStyles.AllPaintingInWmPaint, true);

二、自己创建渐变色组件GradientPanel

  • 就是创建个.cs类,只是里面的写法没见过,哈哈哈,现在长知识了。这边将完整代码放到下面:
csharp 复制代码
/*
 * 功 能:     渐变色Panel
 * 创建时间:  2024/8/27 21:18:19
 * 创建人:     小白鼠零号
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ZHCH_winform_2.manager
{
    public class GradientPanel : Panel
    {
        private Color exColor1 = Color.Lime;
        [Category("EX属性")]
        [DefaultValue(typeof(Color), "Lime")]
        public Color EXColor1
        {
            get { return exColor1; }
            set { exColor1 = value; Invalidate(); }
        }

        private Color exColor2 = Color.Blue;
        [Category("EX属性")]
        [DefaultValue(typeof(Color), "Blue")]
        public Color EXColor2
        {
            get { return exColor2; }
            set { exColor2 = value; Invalidate(); }
        }

        private float exAngle = 45f;
        [Category("EX属性")]
        [DefaultValue(typeof(float), "45")]
        public float EXAngle
        {
            get { return exAngle; }
            set { exAngle = value; Invalidate(); }
        }
        public GradientPanel()
        {
            //DoubleBuffered = true;
            this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint, true);
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;

            LinearGradientBrush brush = new LinearGradientBrush(ClientRectangle, exColor1, exColor2, exAngle);
            e.Graphics.FillRectangle(brush, ClientRectangle);
        }

    }
}

三、最终效果展示


更新时间

  • 2024.08.27:创建
  • 2024.08.28:找到正确的解决方案。
相关推荐
小猪快跑爱摄影2 小时前
【AutoCad 2025】【C#】零基础教程(四)——MText 常见属性
c#·autocad
炼钢厂4 小时前
C#6——DateTime
c#
Lv11770085 小时前
Visual Studio中的多态
ide·笔记·c#·visual studio
wuguan_5 小时前
C#:多态函数重载、态符号重载、抽象、虚方法
开发语言·c#
我不是程序猿儿6 小时前
【C#】ScottPlot的Refresh()
开发语言·c#
工程师0076 小时前
C# 基于 HSL 与基恩士 PLC 通信
c#·mc协议·基恩士plc
张人玉9 小时前
c# DataSet 类
数据库·c#·dataset
秦苒&9 小时前
【C语言】详解数据类型和变量(一):数据类型介绍、 signed和unsigned、数据类型的取值范围、变量、强制类型转换
c语言·开发语言·c++·c#
c#上位机10 小时前
C#异步编程之async、await
开发语言·c#
郑州光合科技余经理10 小时前
实战分享:如何构建东南亚高并发跑腿配送系统
java·开发语言·javascript·spring cloud·uni-app·c#·php