System.Windows.Forms.ToolStripDropDown.OnClosing C# (CSharp) Méthode

OnClosing() protected méthode

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