123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System.Drawing;
- using System.Windows.Forms;
- namespace Microsoft.Windows.Forms
- {
- partial interface IUIControl
- {
-
-
-
- bool UpdateSuspended
- {
- get;
- }
-
-
-
-
- void RenderCore(PaintEventArgs e);
-
-
-
- void BeginUpdate();
-
-
-
- void EndUpdate();
-
-
-
-
- void EndUpdate(bool forceUpdate);
-
-
-
- void Invalidate();
-
-
-
-
- void Invalidate(bool invalidateChildren);
-
-
-
-
- void Invalidate(Rectangle rc);
-
-
-
-
-
- void Invalidate(Rectangle rc, bool invalidateChildren);
-
-
-
- void Update();
-
-
-
- void Refresh();
- }
- }
|