public ICommandBar AddCommand(string displayName, ICommand command, object commandParameter)
 {
     CommandModel commandMenuItem = new CommandModel();
     commandMenuItem.Content = displayName;
     commandMenuItem.Command = command;
     commandMenuItem.CommandParameter = commandParameter;
     _items.Add(commandMenuItem);
     return this;
 }
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     _items.Add(commandPresentation);
     return this;
 }
Пример #3
0
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     _items.Add(commandPresentation);
     return(this);
 }
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     return _commandBar.AddCommand(commandPresentation);
 }
Пример #5
0
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     return(_commandBar.AddCommand(commandPresentation));
 }