C#防止在畫面上閃爍的Button

來源:互聯網
上載者:User

        當在winform中放置很多Button控制項,並且畫面還有背景,每個Button都還有背景的時候,顯示畫面時就會產生閃爍的效果,如果機器效能好的話,畫面會比較快的載入完,閃爍的情況不會很明顯,但是如果機器效能不佳的話,則會給使用者很差的體驗。即使畫面和Button採用了雙緩衝,效果也不明顯。因此需要對C#中的Button加以重載並重寫部分代碼。就可以避免這種情況發生了。廢話不多說了,代碼如下:

 public class ButtonEx : Button
    {
        public ButtonEx()
        {

        }

     
        //基類的方法不能用
        protected override void OnPaintBackground(PaintEventArgs e)
        {
            return;
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            //一定要設定背景圖哦
            if (this.BackgroundImage != null)
            {
                e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
                e.Graphics.DrawImage(this.BackgroundImage, new System.Drawing.Rectangle(0, 0, this.Width, this.Height),
                0, 0, this.BackgroundImage.Width, this.BackgroundImage.Height,
                System.Drawing.GraphicsUnit.Pixel);
            }

           //基類的OnPaint方法不能使用
            //base.OnPaint(e);
        }

        
    }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.