91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

解決WinForm界面閃爍問題

發布時間:2020-09-14 13:04:02 來源:網絡 閱讀:1920 作者:Misy 欄目:編程語言

最近做個功能,根據表數據配置,在窗體上自動生成控件,自動布局,這個時候是沒有問題的;當窗體大小改變時,控件的位置也要自動調整,這個時候窗體就會出現閃爍,看著很不爽,嚴重影響程序的使用,于是在在網上搜集解決方案,皇天不負有心人,終于把問題解決了,現講方法共享出來。


1、使用雙緩存

SetStyle(ControlStyles.UserPaint, true);
SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景.
SetStyle(ControlStyles.DoubleBuffer, true); //雙緩沖


這是我在網上搜集資料的時候,找到最多的回答,這個有一點用,但是效果確實不太明顯,于是繼續搜集,終于找到了另外一個能解決實際問題的方案。


2、在主窗體的任意位置重寫CreateParams

protected override CreateParams CreateParams
{
    get
    {
        CreateParams cp = base.CreateParams;
        cp.ExStyle |= 0x02000000;////用雙緩沖從下到上繪制窗口的所有子孫
        return cp;
    }
}


參考資料:http://www.dotblogs.com.tw/rainmaker/archive/2012/02/22/69811.aspx

How to fix the flickering in User controls


http://blog.csdn.net/onejune2013/article/details/7664323

Flicker-free painting


3、為所有控件設置雙緩存

        private PropertyInfo _PropertyInfo = null;
        
        public IPNWidget()
        {
            InitializeComponent();

            this.DoubleBuffered = true;
            this.SetStyle(
                        ControlStyles.UserPaint |
                        ControlStyles.AllPaintingInWmPaint |
                        ControlStyles.DoubleBuffer, true);

            this._PropertyInfo = this.GetType().GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic);
            foreach (Control rootCtrl in this.Controls)
            {
                this._PropertyInfo.SetValue(rootCtrl, true, null);

                if (rootCtrl.HasChildren)
                    SearchControl(rootCtrl);
            }
        }
        
        void SearchControl(Control Ctrl)
        {
            foreach (Control rootCtrl in Ctrl.Controls)
            {
                //Debug.WriteLine(rootCtrl.Name + " 建立DoubleBuffer");
                this._PropertyInfo.SetValue(rootCtrl, true, null);
                if (rootCtrl.HasChildren)
                    SearchControl(rootCtrl);
                else
                    break;
            }
        }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尚义县| 普兰店市| 汝城县| 蓬莱市| 梅州市| 格尔木市| 阿拉善右旗| 华容县| 隆林| 青岛市| 尼玛县| 龙海市| 剑川县| 印江| 汝阳县| 墨玉县| 隆化县| 崇左市| 平顺县| 当涂县| 惠安县| 襄城县| 定南县| 安福县| 西丰县| 池州市| 翼城县| 怀仁县| 玉树县| 社旗县| 北京市| 固安县| 罗定市| 临邑县| 明星| 高安市| 湾仔区| 灵璧县| 开原市| 武冈市| 昂仁县|