27 references to PropertyValueEditorCommands
System.Activities.Presentation (27)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (1)
88this.CommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.FinishEditing, OnFinishEditing));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\EditModeSwitchButtonKeyboardFix.cs (4)
134PropertyValueEditorCommands.ShowInlineEditor.Execute(null, button); 137PropertyValueEditorCommands.ShowExtendedPopupEditor.Execute(null, button); 140PropertyValueEditorCommands.ShowExtendedPinnedEditor.Execute(null, button); 143PropertyValueEditorCommands.ShowDialogEditor.Execute(null, button);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagEditor.xaml.cs (1)
65ValueEditorUtils.ExecuteCommand(PropertyValueEditorCommands.FinishEditing, this, null);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueEditorCommandHandler.cs (7)
92_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.ShowInlineEditor, OnShowInlineEditor)); 93_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.ShowExtendedPopupEditor, OnShowExtendedPopupEditor)); 94_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.ShowExtendedPinnedEditor, OnShowExtendedPinnedEditor)); 95_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.ShowDialogEditor, OnShowDialogEditor)); 137_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.BeginTransaction, OnBeginTransaction)); 138_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.CommitTransaction, OnCommitTransaction)); 139_activeCommandBindings.Add(new CommandBinding(PropertyValueEditorCommands.AbortTransaction, OnAbortTransaction));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\EditModeSwitchButton.cs (4)
226PropertyValueEditorCommands.ShowInlineEditor.Execute(null, this); 229PropertyValueEditorCommands.ShowExtendedPopupEditor.Execute(null, this); 232PropertyValueEditorCommands.ShowExtendedPinnedEditor.Execute(null, this); 235PropertyValueEditorCommands.ShowDialogEditor.Execute(null, this);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValueEditorCommands.cs (8)
33_showInlineEditor = new RoutedCommand("ShowInlineEditor", typeof(PropertyValueEditorCommands)); 45_showExtendedPopupEditor = new RoutedCommand("ShowExtendedPopupEditor", typeof(PropertyValueEditorCommands)); 57_showExtendedPinnedEditor = new RoutedCommand("ShowExtendedPinnedEditor", typeof(PropertyValueEditorCommands)); 69_showDialogEditor = new RoutedCommand("ShowDialogEditor", typeof(PropertyValueEditorCommands)); 81_beginTransaction = new RoutedCommand("BeginTransaction", typeof(PropertyValueEditorCommands)); 94_commitTransaction = new RoutedCommand("CommitTransaction", typeof(PropertyValueEditorCommands)); 107_abortTransaction = new RoutedCommand("AbortTransaction", typeof(PropertyValueEditorCommands)); 120_finishEditing = new RoutedCommand("FinishEditing", typeof(PropertyValueEditorCommands));
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (2)
313.Any(cb => ICommand.Equals(cb.Command, PropertyValueEditorCommands.ShowDialogEditor)); 317var cb = new CommandBinding(PropertyValueEditorCommands.ShowDialogEditor, this.OnShowPropertyValueEditor, this.OnCanShowPropertyValueEditor);