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; }
public ICommandBar AddCommand(CommandModel commandPresentation) { _items.Add(commandPresentation); return(this); }
public ICommandBar AddCommand(CommandModel commandPresentation) { return _commandBar.AddCommand(commandPresentation); }
public ICommandBar AddCommand(CommandModel commandPresentation) { return(_commandBar.AddCommand(commandPresentation)); }