ARCed.UI.DockContentHandler.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected virtual void Dispose(bool disposing)
        {
            if (disposing)
            {
                lock (this)
                {
                    this.DockPanel = null;
                    if (this.m_autoHideTab != null)
                        this.m_autoHideTab.Dispose();
                    if (this.m_tab != null)
                        this.m_tab.Dispose();

                    this.Form.Disposed -= this.Form_Disposed;
                    this.Form.TextChanged -= this.Form_TextChanged;
                    this._mEvents.Dispose();
                }
            }
        }

Same methods

DockContentHandler::Dispose ( ) : void