System.Windows.Forms.ToolStripDropDown.OnClosing C# (CSharp) 메소드

OnClosing() 보호된 메소드

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