예제 #1
0
파일: ActionItem.cs 프로젝트: hultqvist/Eto
		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;
		}
예제 #2
0
파일: ActionItem.cs 프로젝트: hultqvist/Eto
		public ActionItem(BaseAction action) : this(action, false)
		{

		}