System.Windows.Forms.Control.OnHandleDestroyed C# (CSharp) Method

OnHandleDestroyed() private method

private OnHandleDestroyed ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnHandleDestroyed(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [HandleDestroyedEvent]);
			if (eh != null)
				eh (this, e);
		}
Control