コード例 #1
0
ファイル: MenuItemWithAction.cs プロジェクト: thaiEv3/monoev3
 public MenuItemWithAction(Lcd lcd, string text, Func <bool> action, MenuItemSymbole symbole = MenuItemSymbole.None)
 {
     this.text    = text;
     this.action  = action;
     this.lcd     = lcd;
     this.symbole = symbole;
 }
コード例 #2
0
		public MenuItemWithAction(string text, Func<bool> action, MenuItemSymbole symbole = MenuItemSymbole.None){
			this.text = text;
			this.action = action;
			this.symbole = symbole;
		}