本文轉載:https://my.oschina.net/Tsybius2014/blog/659742html
個人操做系統是Win7,使用的VS版本是VS2012,文中的代碼都是C#代碼。ide
這幾天遇到一個問題,即我用一個嵌入圖片的Panel做爲Winform應用程序的背景,以下圖所示:函數
這是一個Winform窗體,裏面放置了一個Panel,Dock屬性爲Fill,BackgroundImage使用了《少年電世界》2003年第02期的封面圖片,BackgroundImageLayout使用了Stretch。ui
這個界面如今有兩個問題:this
一、在窗體第一次被打開時,背景圖片會出現明顯的閃爍spa
二、在拉動窗體的邊界以調整窗體大小時,背景圖片非出現明顯的閃爍操作系統
爲了處理這一問題,我查了一些資料,也都逐個試過了,下面先說下其中的兩個有表明性方法:.net
方法1:直接使用雙緩衝unix
SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景. SetStyle(ControlStyles.DoubleBuffer, true); // 雙緩衝
我嘗試着將這段代碼加到窗體的構造函數中,並不能解決問題,閃爍依然很是明顯code
在MSDN上還有一篇文章《如何經過對窗體和控件使用雙緩衝來減小圖形閃爍》
地址:https://msdn.microsoft.com/zh-cn/library/3t7htc9c%28v=vs.80%29.aspx
這篇文章中也介紹了一個方法使用雙緩衝:
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
這個方法依然不能解決問題。
方法2:重寫CreateParams方法
方法2須要將如下這段代碼放在Form類的代碼內:
protected override CreateParams CreateParams { get { CreateParams paras = base.CreateParams; paras.ExStyle |= 0x02000000; return paras; } }
這個方法我一開始嘗試的時候一度認爲是有效的,但使用了一段時間後仍是發現了問題:
一、這個方法能夠解決問題1,但不能解決問題2
二、這個方法會影響一些其餘控件、組件的重繪(這點纔是致命的)
所以,這個方法也不能解決問題。
上面兩個方法都不能解決問題,因而我繼續求助度娘,終於在下面這個頁面找到了解決方法:
方法3:封裝Panel類
http://blog.chinaunix.net/uid-14414741-id-2814313.html
這個方法,須要新建一個PanelEnhanced類繼承Panel類,代碼以下:
/// <summary> /// 增強版 Panel /// </summary> class PanelEnhanced : Panel { /// <summary> /// OnPaintBackground 事件 /// </summary> /// <param name="e"></param> protected override void OnPaintBackground(PaintEventArgs e) { // 重載基類的背景擦除函數, // 解決窗口刷新,放大,圖像閃爍 return; } /// <summary> /// OnPaint 事件 /// </summary> /// <param name="e"></param> protected override void OnPaint(PaintEventArgs e) { // 使用雙緩衝 this.DoubleBuffered = true; // 背景重繪移動到此 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); } base.OnPaint(e); } }
將以前咱們創建窗體中的Panel容器換爲咱們新封裝的PanelEnhanced容器,將程序的背景圖片放到裏面,再運行程序,程序背景閃爍的問題就完美解決了!