123456789101112131415161718192021222324252627282930313233343536 |
-
- namespace Microsoft.Windows.Forms
- {
- partial class UIControl
- {
-
-
-
-
- protected override void Dispose(bool disposing)
- {
- IUIControl parent = this.UIParent;
- this.UIParent = null;
- if (parent != null)
- parent.DoLayout();
- if (this.m_UIControls != null)
- {
- this.m_UIControls.Dispose();
- this.m_UIControls = null;
- }
- if (this.m_Region != null)
- {
- this.m_Region.Dispose();
- this.m_Region = null;
- }
- if (this.m_Sprite != null)
- {
- this.m_Sprite.Dispose();
- this.m_Sprite = null;
- }
- }
- }
- }
|