Ejemplo n.º 1
0
		public ActionItem(BaseAction action, bool showLabel)
		{
			if (action == null) throw new ArgumentNullException("action", "Action cannot be null for an action item");
			this.Action = action;
			this.ShowLabel = showLabel;
		}
Ejemplo n.º 2
0
		public ActionItem(BaseAction action) : this(action, false)
		{

		}