Fluqi.Widget.jMenuItem.MenuItem.MenuItem C# (CSharp) Method

MenuItem() public method

Constructor
public MenuItem ( jMenu owner, string id ) : System
owner jMenu Menu object _this_ item belongs to
id string ID to assign to the MenuItem object
return System
		public MenuItem(jMenu.Menu owner, string id)
		{
			this.Menu = owner;
			this.Tag = DEFAULT_SINGLE_TAG;
			this.Children = new MenuItems(this, id);
			this.Parent = null;
			this.IsDisabled = false;
		}

Same methods

MenuItem::MenuItem ( MenuItem parent ) : System