예제 #1
0
 protected abstract IMainView CreateMainView(MenuItem[] menu);
예제 #2
0
파일: MenuItem.cs 프로젝트: rajsite/lvcef
 public MenuItem(Command command, MenuItem[] items)
     : this(null, command, null)
 { }
예제 #3
0
파일: MenuItem.cs 프로젝트: rajsite/lvcef
 private MenuItem(string text, Command command, MenuItem[] items)
 {
     _text = text ?? command.Text;
     _command = command;
     _items = items;
 }
예제 #4
0
파일: MenuItem.cs 프로젝트: rajsite/lvcef
 public MenuItem(string text, MenuItem[] items)
     : this(text, null, items)
 { }