SidebarLibrary.Menus.MenuCommand.OnClick C# (CSharp) Method

OnClick() public method

public OnClick ( EventArgs e ) : void
e System.EventArgs
return void
		public virtual void OnClick(EventArgs e)
		{
			if (Click != null)
			{
				if ( realOwner != null )
					Click(realOwner, e);
				else
				  Click(this, e);
			}
		}