コード例 #1
0
ファイル: MenuActionItem.cs プロジェクト: hultqvist/Eto
		protected MenuActionItem (Generator g, Type type, bool initialize = true)
			: base (g, type, initialize)
		{
			handler = (IMenuActionItem)Handler;
		}
コード例 #2
0
ファイル: MenuActionItem.cs プロジェクト: modulexcite/Eto-1
 protected MenuActionItem(Generator g, Type type, bool initialize = true)
     : base(g, type, initialize)
 {
     handler = (IMenuActionItem)Handler;
 }
コード例 #3
0
ファイル: MenuActionItem.cs プロジェクト: M1C/Eto
 public MenuActionItem(Generator g, Type type)
     : base(g, type)
 {
     inner = (IMenuActionItem)Handler;
 }