Пример #1
0
 public MenuItem(Command command, MenuItem[] items)
     : this(null, command, null)
 { }
Пример #2
0
 private MenuItem(string text, Command command, MenuItem[] items)
 {
     _text = text ?? command.Text;
     _command = command;
     _items = items;
 }
Пример #3
0
 public MenuItem(Command command)
     : this(null, command, null)
 { }