System.Windows.Forms.ToolStripDropDown.OnClosing C# (CSharp) Method

OnClosing() protected method

protected OnClosing ( System.Windows.Forms.ToolStripDropDownClosingEventArgs e ) : void
e System.Windows.Forms.ToolStripDropDownClosingEventArgs
return void
		protected virtual void OnClosing (ToolStripDropDownClosingEventArgs e)
		{
			ToolStripDropDownClosingEventHandler eh = (ToolStripDropDownClosingEventHandler)(Events [ClosingEvent]);
			if (eh != null)
				eh (this, e);
		}