Ejemplo n.º 1
0
 protected abstract IMainView CreateMainView(MenuItem[] menu);
Ejemplo n.º 2
0
 public MenuItem(Command command, MenuItem[] items)
     : this(null, command, null)
 { }
Ejemplo n.º 3
0
 private MenuItem(string text, Command command, MenuItem[] items)
 {
     _text = text ?? command.Text;
     _command = command;
     _items = items;
 }
Ejemplo n.º 4
0
 public MenuItem(string text, MenuItem[] items)
     : this(text, null, items)
 { }