C# WinForm表單 控制項Control 的 Invalidate、Update、Refresh的區別

來源:互聯網
上載者:User

標籤:

 

Control.Refresh - does an Control.Invalidate followed by Control.Update.
Refresh: 強制控制項使其工作區無效並立即重繪自己和任何子控制項。== Invalidate Update

Control.Invalidate - invalidates a specific region of the Control (defaults to entire client area) and causes a paint message to be sent to the control.Invalidate marks the control (region, or rect) as in need of repainting, but doesn‘t immediately repaint (the repaint is triggered when everything else has been taken care of and the app becomes idle).
Invalidate: 使控制項的特定地區(可以自己設定地區,從而提高效能)無效並向控制項發送繪製訊息。
                將控制項標記為需要重繪,但是不會立即執行重新整理重繪,等到系統空閑時進行重繪。


Control.Update - causes the Paint event to occur immediately (Windows will normally wait until there are no other messages for the window to process, before raising the Paint event).Update causes the control to immediately repaint if any portions have been invalidated.
Update: 使控制項重繪其工作區內的無效地區,立即調用Paint事件。若有無效地區,Update將立即觸發重繪。

The paint event of course is where all the drawing of your form occurs. Note there is only one pending Paint event, if you call Invalidate 3 times, you will still only receive one Paint event.
Paint: 無處不在。如果你調用3次Invalidate,但是系統將只觸發一次Paint事件。

 

Most of the time Invalidate is sufficient, and advisable as you can do a bunch of invalidations (either explicit or implicit) and then let the control repaint itself when the app is idle. It is advisable to use Update or Refresh when you want the control to immediately repaint because the app will not be idle for a user-noticable period of time.

大多數時候Invalidate已經足夠了,當系統要集中進行大量的重新整理重繪時,建議使用Invalidate,因為這樣系統最終只進行一次重新整理,提高了系統效能。如果你想立即執行重新整理的時候,建議使用Refresh方法。

C# WinForm表單 控制項Control 的 Invalidate、Update、Refresh的區別

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.