System.Windows.Forms.ToolStripItem.OnClick C# (CSharp) Method

OnClick() protected method

protected OnClick ( EventArgs e ) : void
e EventArgs
return void
		protected virtual void OnClick (EventArgs e)
		{
			EventHandler eh = (EventHandler)(Events [ClickEvent]);
			if (eh != null)
				eh (this, e);
		}