1 interface inheriting from ICommand
PresentationCore (1)
Core\CSharp\System\Windows\Input\Command\ISecureCommand.cs (1)
38
internal interface ISecureCommand :
ICommand
3 implementations of ICommand
PresentationCore (1)
Core\CSharp\System\Windows\Input\Command\RoutedCommand.cs (1)
28
public class RoutedCommand :
ICommand
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\Data\DelegateCommand.cs (1)
12
internal sealed class DelegateCommand :
ICommand
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\Data\DelegateCommand.cs (1)
12
internal sealed class DelegateCommand :
ICommand
315 references to ICommand
PresentationCore (44)
Core\CSharp\System\Windows\Input\Command\CanExecuteChangedEventManager.cs (11)
47
public static void AddHandler(
ICommand
source, EventHandler<EventArgs> handler)
59
public static void RemoveHandler(
ICommand
source, EventHandler<EventArgs> handler)
99
ICommand
command = source as
ICommand
;
195
private void PrivateAddHandler(
ICommand
source, EventHandler<EventArgs> handler)
213
private void PrivateRemoveHandler(
ICommand
source, EventHandler<EventArgs> handler)
371
public HandlerSink(CanExecuteChangedEventManager manager,
ICommand
source, EventHandler<EventArgs> originalHandler)
422
public bool Matches(
ICommand
source, EventHandler<EventArgs> handler)
424
return (_source != null && (
ICommand
)_source.Target == source) &&
432
ICommand
source = (
ICommand
)_source.Target;
Core\CSharp\System\Windows\Input\Command\CanExecuteRoutedEventArgs.cs (3)
30
internal CanExecuteRoutedEventArgs(
ICommand
command, object parameter)
48
public
ICommand
Command
99
private
ICommand
_command;
Core\CSharp\System\Windows\Input\Command\CommandBinding.cs (5)
40
public CommandBinding(
ICommand
command)
50
public CommandBinding(
ICommand
command, ExecutedRoutedEventHandler executed)
61
public CommandBinding(
ICommand
command, ExecutedRoutedEventHandler executed, CanExecuteRoutedEventHandler canExecute)
88
public
ICommand
Command
229
private
ICommand
_command;
Core\CSharp\System\Windows\Input\Command\CommandBindingCollection.cs (2)
386
internal
ICommand
FindMatch(object targetElement, InputEventArgs inputEventArgs)
408
internal CommandBinding FindMatch(
ICommand
command, ref int index)
Core\CSharp\System\Windows\Input\Command\CommandDevice.cs (3)
329
internal CommandDeviceEventArgs(CommandDevice commandDevice, int timestamp,
ICommand
command)
343
internal
ICommand
Command
359
private
ICommand
_command;
Core\CSharp\System\Windows\Input\Command\CommandManager.cs (3)
353
ICommand
command = null;
634
private static void FindCommandBinding(object sender, RoutedEventArgs e,
ICommand
command, bool execute)
739
private static void FindCommandBinding(CommandBindingCollection commandBindings, object sender, RoutedEventArgs e,
ICommand
command, bool execute)
Core\CSharp\System\Windows\Input\Command\ExecutedRoutedEventArgs.cs (3)
30
internal ExecutedRoutedEventArgs(
ICommand
command, object parameter)
48
public
ICommand
Command
80
private
ICommand
_command;
Core\CSharp\System\Windows\Input\Command\ICommand.cs (1)
9
[assembly:TypeForwardedTo(typeof(System.Windows.Input.
ICommand
))]
Core\CSharp\System\Windows\Input\Command\ICommandSource.cs (1)
22
ICommand
Command
Core\CSharp\System\Windows\Input\Command\InputBinding.cs (6)
46
public InputBinding(
ICommand
command, InputGesture gesture)
73
DependencyProperty.Register("Command", typeof(
ICommand
), typeof(InputBinding), new UIPropertyMetadata(null, new PropertyChangedCallback(OnCommandPropertyChanged)));
85
public
ICommand
Command
89
return (
ICommand
)GetValue(CommandProperty);
109
inputBinding.CheckSecureCommand((
ICommand
)e.NewValue, inputBinding.Gesture);
204
void CheckSecureCommand(
ICommand
command, InputGesture gesture)
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (2)
59
public KeyBinding(
ICommand
command, KeyGesture gesture) : base(command, gesture)
70
public KeyBinding(
ICommand
command, Key key, ModifierKeys modifiers) :
Core\CSharp\System\Windows\Input\Command\MouseBinding.cs (2)
61
internal MouseBinding(
ICommand
command, MouseAction mouseAction)
71
public MouseBinding(
ICommand
command, MouseGesture gesture) : base(command, gesture)
Core\CSharp\System\Windows\Input\Command\RoutedCommand.cs (2)
98
void
ICommand
.Execute(object parameter)
113
bool
ICommand
.CanExecute(object parameter)
PresentationFramework (58)
src\Framework\MS\Internal\Commands\CommandHelpers.cs (3)
125
ICommand
command = commandSource.Command;
174
ICommand
command = commandSource.Command;
199
internal static void ExecuteCommand(
ICommand
command, object parameter, IInputElement target)
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
2839
ICommand
command = args.Command;
src\Framework\System\Windows\Controls\MenuItem.cs (11)
393
(
ICommand
)null,
401
public
ICommand
Command
403
get { return (
ICommand
) GetValue(CommandProperty); }
410
item.OnCommandChanged((
ICommand
) e.OldValue, (
ICommand
) e.NewValue);
413
private void OnCommandChanged(
ICommand
oldCommand,
ICommand
newCommand)
428
private void UnhookCommand(
ICommand
command)
434
private void HookCommand(
ICommand
command)
1314
ICommand
command = item as
ICommand
;
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (10)
193
typeof(
ICommand
),
195
new FrameworkPropertyMetadata((
ICommand
)null,
270
public
ICommand
Command
274
return (
ICommand
) GetValue(CommandProperty);
285
b.OnCommandChanged((
ICommand
)e.OldValue, (
ICommand
)e.NewValue);
288
private void OnCommandChanged(
ICommand
oldCommand,
ICommand
newCommand)
300
private void UnhookCommand(
ICommand
command)
306
private void HookCommand(
ICommand
command)
src\Framework\System\Windows\Documents\Hyperlink.cs (10)
152
typeof(
ICommand
),
154
new FrameworkPropertyMetadata((
ICommand
)null,
162
public
ICommand
Command
166
return (
ICommand
)GetValue(CommandProperty);
177
h.OnCommandChanged((
ICommand
)e.OldValue, (
ICommand
)e.NewValue);
180
private void OnCommandChanged(
ICommand
oldCommand,
ICommand
newCommand)
192
private void UnhookCommand(
ICommand
command)
198
private void HookCommand(
ICommand
command)
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1116
private static bool HandleEnterBreakForRichText(TextEditor This,
ICommand
command)
1187
private static bool HandleEnterBreakWhenStructuralBoundaryIsCrossed(TextEditor This,
ICommand
command)
src\Framework\System\Windows\Input\Command\CommandConverter.cs (5)
117
ICommand
command = ConvertFromHelper( ownerType, localName );
134
internal static
ICommand
ConvertFromHelper(Type ownerType, string localName )
136
ICommand
command = null;
153
command = propertyInfo.GetValue(null, null) as
ICommand
;
160
command = fieldInfo.GetValue(null) as
ICommand
;
src\Framework\System\Windows\Input\Command\CommandValueSerializer.cs (1)
166
ICommand
command = CommandConverter.ConvertFromHelper( declaringType, commandName );
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
368
case 276: t = () => typeof(
ICommand
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
6948
typeof(System.Windows.Input.
ICommand
), // type
6953
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Input.CommandBinding)target).Command = (System.Windows.Input.
ICommand
)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5204
typeof(System.Windows.Input.
ICommand
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5820
case KnownElements.ICommand: t = typeof(System.Windows.Input.
ICommand
); break;
src\Framework\System\Windows\Shell\ThumbButtonInfo.cs (10)
173
typeof(
ICommand
),
181
var
oldCommand = (
ICommand
)e.OldValue;
182
var
newCommand = (
ICommand
)e.NewValue;
256
ICommand
command = Command;
277
private void UnhookCommand(
ICommand
command)
284
private void HookCommand(
ICommand
command)
320
public
ICommand
Command
322
get { return (
ICommand
)GetValue(CommandProperty); }
System (10)
compmod\system\collections\specialized\marshalinghelpers.cs (10)
405
private static ConditionalWeakTable<
ICommand
, EventRegistrationTokenTable<EventHandler>> m_weakTable =
406
new ConditionalWeakTable<
ICommand
, EventRegistrationTokenTable<EventHandler>>();
411
ICommand
_this = JitHelpers.UnsafeCast<
ICommand
>(this);
424
ICommand
_this = JitHelpers.UnsafeCast<
ICommand
>(this);
436
ICommand
_this = JitHelpers.UnsafeCast<
ICommand
>(this);
442
ICommand
_this = JitHelpers.UnsafeCast<
ICommand
>(this);
System.Activities.Core.Presentation (3)
System\Activities\Presentation\TypeCollectionDesigner.xaml.cs (2)
37
public static readonly
ICommand
AddNewTypeCommand = new RoutedCommand("AddNewType", typeof(TypeCollectionDesigner));
38
public static readonly
ICommand
DeleteTypeCommand = new RoutedCommand("DeleteType", typeof(TypeCollectionDesigner));
System\ServiceModel\Activities\Presentation\CorrelationInitializerDesigner.xaml.cs (1)
31
static readonly
ICommand
AddNewInitializerCommand = new RoutedCommand();
System.Activities.Presentation (100)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (2)
54
private
ICommand
_clearFilterCommand;
138
public
ICommand
ClearFilterCommand
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\Data\DelegateCommand.cs (2)
29
void
ICommand
.Execute(object arg)
34
bool
ICommand
.CanExecute(object arg)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ChoiceEditor.cs (18)
65
public static readonly DependencyProperty BeginCommandProperty = DependencyProperty.Register("BeginCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
66
public static readonly DependencyProperty UpdateCommandProperty = DependencyProperty.Register("UpdateCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
67
public static readonly DependencyProperty CancelCommandProperty = DependencyProperty.Register("CancelCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
68
public static readonly DependencyProperty CommitCommandProperty = DependencyProperty.Register("CommitCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
69
public static readonly DependencyProperty FinishEditingCommandProperty = DependencyProperty.Register("FinishEditingCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
276
public
ICommand
BeginCommand
278
get { return (
ICommand
)this.GetValue(ChoiceEditor.BeginCommandProperty); }
286
public
ICommand
UpdateCommand
288
get { return (
ICommand
)this.GetValue(ChoiceEditor.UpdateCommandProperty); }
295
public
ICommand
CancelCommand
297
get { return (
ICommand
)this.GetValue(ChoiceEditor.CancelCommandProperty); }
304
public
ICommand
CommitCommand
306
get { return (
ICommand
)this.GetValue(ChoiceEditor.CommitCommandProperty); }
315
public
ICommand
FinishEditingCommand
317
get { return (
ICommand
)this.GetValue(ChoiceEditor.FinishEditingCommandProperty); }
334
public
ICommand
NextValueCommand
346
public
ICommand
PreviousValueCommand
982
ICommand
finishedEditingCommand = this.FinishEditingCommand;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (16)
30
public static readonly DependencyProperty BeginCommandProperty = DependencyProperty.Register("BeginCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
31
public static readonly DependencyProperty CommitCommandProperty = DependencyProperty.Register("CommitCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
32
public static readonly DependencyProperty CancelCommandProperty = DependencyProperty.Register("CancelCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
33
public static readonly DependencyProperty FinishEditingCommandProperty = DependencyProperty.Register("FinishEditingCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
34
public static readonly DependencyProperty LostFocusCommandProperty = DependencyProperty.Register("LostFocusCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
81
public
ICommand
BeginCommand
83
get { return (
ICommand
)this.GetValue(StringEditor.BeginCommandProperty); }
87
public
ICommand
CommitCommand
89
get { return (
ICommand
)this.GetValue(StringEditor.CommitCommandProperty); }
93
public
ICommand
CancelCommand
95
get { return (
ICommand
)this.GetValue(StringEditor.CancelCommandProperty); }
99
public
ICommand
FinishEditingCommand
101
get { return (
ICommand
)this.GetValue(StringEditor.FinishEditingCommandProperty); }
105
public
ICommand
LostFocusCommand
107
get { return (
ICommand
)this.GetValue(StringEditor.LostFocusCommandProperty); }
360
ICommand
finishedEditingCommand = this.FinishEditingCommand;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ValueEditorUtils.cs (1)
66
public static void ExecuteCommand(
ICommand
command, IInputElement element, object parameter)
System.Activities.Presentation\System\Activities\Presentation\DefaultCommandExtensionCallback.cs (2)
20
Dictionary<
ICommand
, List<KeyGesture>> defaultGestures = new Dictionary<
ICommand
, List<KeyGesture>>();
System.Activities.Presentation\System\Activities\Presentation\Hosting\IWorkflowCommandExtensionCallback.cs (2)
13
internal CommandInfo(
ICommand
command)
19
public
ICommand
Command
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (4)
43
DependencyProperty.Register("AddNewRowCommand", typeof(
ICommand
), typeof(DataGridHelper), new UIPropertyMetadata(null));
313
.Any(cb =>
ICommand
.Equals(cb.Command, PropertyValueEditorCommands.ShowDialogEditor));
369
public
ICommand
AddNewRowCommand
371
get { return (
ICommand
)GetValue(AddNewRowCommandProperty); }
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (41)
52
public static readonly
ICommand
GoToParentCommand = new RoutedCommand("GoToParentCommand", typeof(DesignerView));
54
public static readonly
ICommand
ExpandCommand = new RoutedCommand("ExpandCommand", typeof(DesignerView));
56
public static readonly
ICommand
ExpandAllCommand = new RoutedCommand("ExpandAllCommand", typeof(DesignerView));
58
public static readonly
ICommand
CollapseCommand = new RoutedCommand("CollapseCommand", typeof(DesignerView));
60
public static readonly
ICommand
CollapseAllCommand = new RoutedCommand("CollapseAllCommand", typeof(DesignerView));
62
public static readonly
ICommand
RestoreCommand = new RoutedCommand("RestoreCommand", typeof(DesignerView));
64
public static readonly
ICommand
ExpandInPlaceCommand = new RoutedCommand("ExpandInPlaceCommand", typeof(DesignerView));
66
public static readonly
ICommand
InsertBreakpointCommand = new RoutedCommand("InsertBreakpointCommand", typeof(DesignerView));
68
public static readonly
ICommand
DeleteBreakpointCommand = new RoutedCommand("DeleteBreakpointParentCommand", typeof(DesignerView));
70
public static readonly
ICommand
EnableBreakpointCommand = new RoutedCommand("EnableBreakpointCommand", typeof(DesignerView));
72
public static readonly
ICommand
DisableBreakpointCommand = new RoutedCommand("DisableBreakpointCommand", typeof(DesignerView));
74
public static readonly
ICommand
SaveAsImageCommand = new RoutedCommand("SaveAsImageCommand", typeof(DesignerView));
76
public static readonly
ICommand
CopyAsImageCommand = new RoutedCommand("CopyAsImageCommand", typeof(DesignerView));
78
public static readonly
ICommand
ZoomInCommand = new RoutedCommand("ZoomInCommand", typeof(DesignerView));
80
public static readonly
ICommand
ZoomOutCommand = new RoutedCommand("ZoomOutCommand", typeof(DesignerView));
82
public static readonly
ICommand
ToggleArgumentDesignerCommand = new RoutedCommand("ToggleArgumentDesignerCommand", typeof(DesignerView));
84
public static readonly
ICommand
ToggleImportsDesignerCommand = new RoutedCommand("ToggleImportsDesignerCommand", typeof(DesignerView));
86
public static readonly
ICommand
ToggleVariableDesignerCommand = new RoutedCommand("ToggleVariableDesignerCommand", typeof(DesignerView));
88
public static readonly
ICommand
CreateVariableCommand = new RoutedCommand("CreateVariableCommand", typeof(DesignerView));
90
public static readonly
ICommand
ToggleMiniMapCommand = new RoutedCommand("ToggleMinimapCommand", typeof(DesignerView));
92
public static readonly
ICommand
CycleThroughDesignerCommand = new RoutedCommand("CycleThroughDesignerCommand", typeof(DesignerView));
94
public static readonly
ICommand
CreateWorkflowElementCommand = new RoutedCommand("CreateWorkflowElementCommand", typeof(DesignerView));
96
public static readonly
ICommand
CreateArgumentCommand = new RoutedCommand("CreateArgumentCommand", typeof(DesignerView));
98
public static readonly
ICommand
CommitCommand = new RoutedCommand("CommitCommand", typeof(DesignerView));
100
public static readonly
ICommand
FitToScreenCommand = new RoutedCommand("FitToScreenCommand", typeof(DesignerView));
102
public static readonly
ICommand
ResetZoomCommand = new RoutedCommand("ResetZoomCommand", typeof(DesignerView));
104
public static readonly
ICommand
MoveFocusCommand = new RoutedCommand("MoveFocusCommand", typeof(DesignerView));
106
public static readonly
ICommand
ToggleSelectionCommand = new RoutedCommand("ToggleSelectionCommand", typeof(DesignerView));
108
public static readonly
ICommand
CutCommand = new RoutedCommand("CutCommand", typeof(DesignerView));
110
public static readonly
ICommand
CopyCommand = new RoutedCommand("CopyCommand", typeof(DesignerView));
112
public static readonly
ICommand
PasteCommand = new RoutedCommand("PasteCommand", typeof(DesignerView));
114
public static readonly
ICommand
SelectAllCommand = new RoutedCommand("SelectAllCommand", typeof(DesignerView));
116
public static readonly
ICommand
UndoCommand = new RoutedCommand("UndoCommand", typeof(DesignerView));
118
public static readonly
ICommand
RedoCommand = new RoutedCommand("RedoCommand", typeof(DesignerView));
120
public static readonly
ICommand
AddAnnotationCommand = new RoutedCommand("AddAnnotationCommand", typeof(DesignerView));
122
public static readonly
ICommand
EditAnnotationCommand = new RoutedCommand("EditAnnotationCommand", typeof(DesignerView));
124
public static readonly
ICommand
DeleteAnnotationCommand = new RoutedCommand("DeleteAnnotationCommand", typeof(DesignerView));
126
public static readonly
ICommand
ShowAllAnnotationCommand = new RoutedCommand("ShowAllAnnotationCommand", typeof(DesignerView));
128
public static readonly
ICommand
HideAllAnnotationCommand = new RoutedCommand("HideAllAnnotationCommand", typeof(DesignerView));
130
public static readonly
ICommand
DeleteAllAnnotationCommand = new RoutedCommand("DeleteAllAnnotationCommand", typeof(DesignerView));
363
ICommand
cmd = menuItem.Command;
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (6)
209
public static readonly
ICommand
CompleteWordCommand = new RoutedCommand("CompleteWordCommand", typeof(ExpressionTextBox));
211
public static readonly
ICommand
GlobalIntellisenseCommand = new RoutedCommand("GlobalIntellisenseCommand", typeof(ExpressionTextBox));
213
public static readonly
ICommand
ParameterInfoCommand = new RoutedCommand("ParameterInfoCommand", typeof(ExpressionTextBox));
215
public static readonly
ICommand
QuickInfoCommand = new RoutedCommand("QuickInfoCommand", typeof(ExpressionTextBox));
217
public static readonly
ICommand
IncreaseFilterLevelCommand = new RoutedCommand("IncreaseFilterLevelCommand", typeof(ExpressionTextBox));
219
public static readonly
ICommand
DecreaseFilterLevelCommand = new RoutedCommand("DecreaseFilterLevelCommand", typeof(ExpressionTextBox));
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (6)
72
public static readonly
ICommand
CompleteWordCommand = new RoutedCommand("CompleteWordCommand", typeof(VisualBasicEditor));
74
public static readonly
ICommand
GlobalIntellisenseCommand = new RoutedCommand("GlobalIntellisenseCommand", typeof(VisualBasicEditor));
76
public static readonly
ICommand
ParameterInfoCommand = new RoutedCommand("ParameterInfoCommand", typeof(VisualBasicEditor));
78
public static readonly
ICommand
QuickInfoCommand = new RoutedCommand("QuickInfoCommand", typeof(VisualBasicEditor));
80
public static readonly
ICommand
IncreaseFilterLevelCommand = new RoutedCommand("IncreaseFilterLevelCommand", typeof(VisualBasicEditor));
82
public static readonly
ICommand
DecreaseFilterLevelCommand = new RoutedCommand("DecreaseFilterLevelCommand", typeof(VisualBasicEditor));
System.Data (100)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (2)
54
private
ICommand
_clearFilterCommand;
138
public
ICommand
ClearFilterCommand
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\Data\DelegateCommand.cs (2)
29
void
ICommand
.Execute(object arg)
34
bool
ICommand
.CanExecute(object arg)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ChoiceEditor.cs (18)
65
public static readonly DependencyProperty BeginCommandProperty = DependencyProperty.Register("BeginCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
66
public static readonly DependencyProperty UpdateCommandProperty = DependencyProperty.Register("UpdateCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
67
public static readonly DependencyProperty CancelCommandProperty = DependencyProperty.Register("CancelCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
68
public static readonly DependencyProperty CommitCommandProperty = DependencyProperty.Register("CommitCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
69
public static readonly DependencyProperty FinishEditingCommandProperty = DependencyProperty.Register("FinishEditingCommand", typeof(
ICommand
), typeof(ChoiceEditor), new PropertyMetadata(null));
276
public
ICommand
BeginCommand
278
get { return (
ICommand
)this.GetValue(ChoiceEditor.BeginCommandProperty); }
286
public
ICommand
UpdateCommand
288
get { return (
ICommand
)this.GetValue(ChoiceEditor.UpdateCommandProperty); }
295
public
ICommand
CancelCommand
297
get { return (
ICommand
)this.GetValue(ChoiceEditor.CancelCommandProperty); }
304
public
ICommand
CommitCommand
306
get { return (
ICommand
)this.GetValue(ChoiceEditor.CommitCommandProperty); }
315
public
ICommand
FinishEditingCommand
317
get { return (
ICommand
)this.GetValue(ChoiceEditor.FinishEditingCommandProperty); }
334
public
ICommand
NextValueCommand
346
public
ICommand
PreviousValueCommand
982
ICommand
finishedEditingCommand = this.FinishEditingCommand;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (16)
30
public static readonly DependencyProperty BeginCommandProperty = DependencyProperty.Register("BeginCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
31
public static readonly DependencyProperty CommitCommandProperty = DependencyProperty.Register("CommitCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
32
public static readonly DependencyProperty CancelCommandProperty = DependencyProperty.Register("CancelCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
33
public static readonly DependencyProperty FinishEditingCommandProperty = DependencyProperty.Register("FinishEditingCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
34
public static readonly DependencyProperty LostFocusCommandProperty = DependencyProperty.Register("LostFocusCommand", typeof(
ICommand
), typeof(StringEditor), new PropertyMetadata(null));
81
public
ICommand
BeginCommand
83
get { return (
ICommand
)this.GetValue(StringEditor.BeginCommandProperty); }
87
public
ICommand
CommitCommand
89
get { return (
ICommand
)this.GetValue(StringEditor.CommitCommandProperty); }
93
public
ICommand
CancelCommand
95
get { return (
ICommand
)this.GetValue(StringEditor.CancelCommandProperty); }
99
public
ICommand
FinishEditingCommand
101
get { return (
ICommand
)this.GetValue(StringEditor.FinishEditingCommandProperty); }
105
public
ICommand
LostFocusCommand
107
get { return (
ICommand
)this.GetValue(StringEditor.LostFocusCommandProperty); }
360
ICommand
finishedEditingCommand = this.FinishEditingCommand;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ValueEditorUtils.cs (1)
66
public static void ExecuteCommand(
ICommand
command, IInputElement element, object parameter)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DefaultCommandExtensionCallback.cs (2)
20
Dictionary<
ICommand
, List<KeyGesture>> defaultGestures = new Dictionary<
ICommand
, List<KeyGesture>>();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Hosting\IWorkflowCommandExtensionCallback.cs (2)
13
internal CommandInfo(
ICommand
command)
19
public
ICommand
Command
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (4)
43
DependencyProperty.Register("AddNewRowCommand", typeof(
ICommand
), typeof(DataGridHelper), new UIPropertyMetadata(null));
313
.Any(cb =>
ICommand
.Equals(cb.Command, PropertyValueEditorCommands.ShowDialogEditor));
369
public
ICommand
AddNewRowCommand
371
get { return (
ICommand
)GetValue(AddNewRowCommandProperty); }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (41)
52
public static readonly
ICommand
GoToParentCommand = new RoutedCommand("GoToParentCommand", typeof(DesignerView));
54
public static readonly
ICommand
ExpandCommand = new RoutedCommand("ExpandCommand", typeof(DesignerView));
56
public static readonly
ICommand
ExpandAllCommand = new RoutedCommand("ExpandAllCommand", typeof(DesignerView));
58
public static readonly
ICommand
CollapseCommand = new RoutedCommand("CollapseCommand", typeof(DesignerView));
60
public static readonly
ICommand
CollapseAllCommand = new RoutedCommand("CollapseAllCommand", typeof(DesignerView));
62
public static readonly
ICommand
RestoreCommand = new RoutedCommand("RestoreCommand", typeof(DesignerView));
64
public static readonly
ICommand
ExpandInPlaceCommand = new RoutedCommand("ExpandInPlaceCommand", typeof(DesignerView));
66
public static readonly
ICommand
InsertBreakpointCommand = new RoutedCommand("InsertBreakpointCommand", typeof(DesignerView));
68
public static readonly
ICommand
DeleteBreakpointCommand = new RoutedCommand("DeleteBreakpointParentCommand", typeof(DesignerView));
70
public static readonly
ICommand
EnableBreakpointCommand = new RoutedCommand("EnableBreakpointCommand", typeof(DesignerView));
72
public static readonly
ICommand
DisableBreakpointCommand = new RoutedCommand("DisableBreakpointCommand", typeof(DesignerView));
74
public static readonly
ICommand
SaveAsImageCommand = new RoutedCommand("SaveAsImageCommand", typeof(DesignerView));
76
public static readonly
ICommand
CopyAsImageCommand = new RoutedCommand("CopyAsImageCommand", typeof(DesignerView));
78
public static readonly
ICommand
ZoomInCommand = new RoutedCommand("ZoomInCommand", typeof(DesignerView));
80
public static readonly
ICommand
ZoomOutCommand = new RoutedCommand("ZoomOutCommand", typeof(DesignerView));
82
public static readonly
ICommand
ToggleArgumentDesignerCommand = new RoutedCommand("ToggleArgumentDesignerCommand", typeof(DesignerView));
84
public static readonly
ICommand
ToggleImportsDesignerCommand = new RoutedCommand("ToggleImportsDesignerCommand", typeof(DesignerView));
86
public static readonly
ICommand
ToggleVariableDesignerCommand = new RoutedCommand("ToggleVariableDesignerCommand", typeof(DesignerView));
88
public static readonly
ICommand
CreateVariableCommand = new RoutedCommand("CreateVariableCommand", typeof(DesignerView));
90
public static readonly
ICommand
ToggleMiniMapCommand = new RoutedCommand("ToggleMinimapCommand", typeof(DesignerView));
92
public static readonly
ICommand
CycleThroughDesignerCommand = new RoutedCommand("CycleThroughDesignerCommand", typeof(DesignerView));
94
public static readonly
ICommand
CreateWorkflowElementCommand = new RoutedCommand("CreateWorkflowElementCommand", typeof(DesignerView));
96
public static readonly
ICommand
CreateArgumentCommand = new RoutedCommand("CreateArgumentCommand", typeof(DesignerView));
98
public static readonly
ICommand
CommitCommand = new RoutedCommand("CommitCommand", typeof(DesignerView));
100
public static readonly
ICommand
FitToScreenCommand = new RoutedCommand("FitToScreenCommand", typeof(DesignerView));
102
public static readonly
ICommand
ResetZoomCommand = new RoutedCommand("ResetZoomCommand", typeof(DesignerView));
104
public static readonly
ICommand
MoveFocusCommand = new RoutedCommand("MoveFocusCommand", typeof(DesignerView));
106
public static readonly
ICommand
ToggleSelectionCommand = new RoutedCommand("ToggleSelectionCommand", typeof(DesignerView));
108
public static readonly
ICommand
CutCommand = new RoutedCommand("CutCommand", typeof(DesignerView));
110
public static readonly
ICommand
CopyCommand = new RoutedCommand("CopyCommand", typeof(DesignerView));
112
public static readonly
ICommand
PasteCommand = new RoutedCommand("PasteCommand", typeof(DesignerView));
114
public static readonly
ICommand
SelectAllCommand = new RoutedCommand("SelectAllCommand", typeof(DesignerView));
116
public static readonly
ICommand
UndoCommand = new RoutedCommand("UndoCommand", typeof(DesignerView));
118
public static readonly
ICommand
RedoCommand = new RoutedCommand("RedoCommand", typeof(DesignerView));
120
public static readonly
ICommand
AddAnnotationCommand = new RoutedCommand("AddAnnotationCommand", typeof(DesignerView));
122
public static readonly
ICommand
EditAnnotationCommand = new RoutedCommand("EditAnnotationCommand", typeof(DesignerView));
124
public static readonly
ICommand
DeleteAnnotationCommand = new RoutedCommand("DeleteAnnotationCommand", typeof(DesignerView));
126
public static readonly
ICommand
ShowAllAnnotationCommand = new RoutedCommand("ShowAllAnnotationCommand", typeof(DesignerView));
128
public static readonly
ICommand
HideAllAnnotationCommand = new RoutedCommand("HideAllAnnotationCommand", typeof(DesignerView));
130
public static readonly
ICommand
DeleteAllAnnotationCommand = new RoutedCommand("DeleteAllAnnotationCommand", typeof(DesignerView));
363
ICommand
cmd = menuItem.Command;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (6)
209
public static readonly
ICommand
CompleteWordCommand = new RoutedCommand("CompleteWordCommand", typeof(ExpressionTextBox));
211
public static readonly
ICommand
GlobalIntellisenseCommand = new RoutedCommand("GlobalIntellisenseCommand", typeof(ExpressionTextBox));
213
public static readonly
ICommand
ParameterInfoCommand = new RoutedCommand("ParameterInfoCommand", typeof(ExpressionTextBox));
215
public static readonly
ICommand
QuickInfoCommand = new RoutedCommand("QuickInfoCommand", typeof(ExpressionTextBox));
217
public static readonly
ICommand
IncreaseFilterLevelCommand = new RoutedCommand("IncreaseFilterLevelCommand", typeof(ExpressionTextBox));
219
public static readonly
ICommand
DecreaseFilterLevelCommand = new RoutedCommand("DecreaseFilterLevelCommand", typeof(ExpressionTextBox));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (6)
72
public static readonly
ICommand
CompleteWordCommand = new RoutedCommand("CompleteWordCommand", typeof(VisualBasicEditor));
74
public static readonly
ICommand
GlobalIntellisenseCommand = new RoutedCommand("GlobalIntellisenseCommand", typeof(VisualBasicEditor));
76
public static readonly
ICommand
ParameterInfoCommand = new RoutedCommand("ParameterInfoCommand", typeof(VisualBasicEditor));
78
public static readonly
ICommand
QuickInfoCommand = new RoutedCommand("QuickInfoCommand", typeof(VisualBasicEditor));
80
public static readonly
ICommand
IncreaseFilterLevelCommand = new RoutedCommand("IncreaseFilterLevelCommand", typeof(VisualBasicEditor));
82
public static readonly
ICommand
DecreaseFilterLevelCommand = new RoutedCommand("DecreaseFilterLevelCommand", typeof(VisualBasicEditor));