38 references to RoutedCommand
PresentationFramework (37)
System\Windows\Controls\DataGrid.cs (3)
2045public static readonly RoutedCommand BeginEditCommand = new RoutedCommand("BeginEdit", typeof(DataGrid)); 2051public static readonly RoutedCommand CommitEditCommand = new RoutedCommand("CommitEdit", typeof(DataGrid)); 2058public static readonly RoutedCommand CancelEditCommand = new RoutedCommand("CancelEdit", typeof(DataGrid));
System\Windows\Controls\InkCanvas.cs (1)
2052internal static readonly RoutedCommand DeselectCommand = new RoutedCommand("Deselect", typeof(InkCanvas));
System\Windows\Controls\Primitives\ScrollBar.cs (19)
212public static readonly RoutedCommand LineUpCommand = new RoutedCommand("LineUp", typeof(ScrollBar)); 216public static readonly RoutedCommand LineDownCommand = new RoutedCommand("LineDown", typeof(ScrollBar)); 220public static readonly RoutedCommand LineLeftCommand = new RoutedCommand("LineLeft", typeof(ScrollBar)); 224public static readonly RoutedCommand LineRightCommand = new RoutedCommand("LineRight", typeof(ScrollBar)); 228public static readonly RoutedCommand PageUpCommand = new RoutedCommand("PageUp", typeof(ScrollBar)); 232public static readonly RoutedCommand PageDownCommand = new RoutedCommand("PageDown", typeof(ScrollBar)); 236public static readonly RoutedCommand PageLeftCommand = new RoutedCommand("PageLeft", typeof(ScrollBar)); 240public static readonly RoutedCommand PageRightCommand = new RoutedCommand("PageRight", typeof(ScrollBar)); 244public static readonly RoutedCommand ScrollToEndCommand = new RoutedCommand("ScrollToEnd", typeof(ScrollBar)); 248public static readonly RoutedCommand ScrollToHomeCommand = new RoutedCommand("ScrollToHome", typeof(ScrollBar)); 252public static readonly RoutedCommand ScrollToRightEndCommand = new RoutedCommand("ScrollToRightEnd", typeof(ScrollBar)); 256public static readonly RoutedCommand ScrollToLeftEndCommand = new RoutedCommand("ScrollToLeftEnd", typeof(ScrollBar)); 260public static readonly RoutedCommand ScrollToTopCommand = new RoutedCommand("ScrollToTop", typeof(ScrollBar)); 264public static readonly RoutedCommand ScrollToBottomCommand = new RoutedCommand("ScrollToBottom", typeof(ScrollBar)); 268public static readonly RoutedCommand ScrollToHorizontalOffsetCommand = new RoutedCommand("ScrollToHorizontalOffset", typeof(ScrollBar)); 272public static readonly RoutedCommand ScrollToVerticalOffsetCommand = new RoutedCommand("ScrollToVerticalOffset", typeof(ScrollBar)); 276public static readonly RoutedCommand DeferScrollToHorizontalOffsetCommand = new RoutedCommand("DeferScrollToToHorizontalOffset", typeof(ScrollBar)); 280public static readonly RoutedCommand DeferScrollToVerticalOffsetCommand = new RoutedCommand("DeferScrollToVerticalOffset", typeof(ScrollBar)); 285public static readonly RoutedCommand ScrollHereCommand = new RoutedCommand("ScrollHere", typeof(ScrollBar));
System\Windows\Controls\Slider.cs (6)
129_increaseLargeCommand = new RoutedCommand("IncreaseLarge", typeof(Slider)); 130_decreaseLargeCommand = new RoutedCommand("DecreaseLarge", typeof(Slider)); 131_increaseSmallCommand = new RoutedCommand("IncreaseSmall", typeof(Slider)); 132_decreaseSmallCommand = new RoutedCommand("DecreaseSmall", typeof(Slider)); 133_minimizeValueCommand = new RoutedCommand("MinimizeValue", typeof(Slider)); 134_maximizeValueCommand = new RoutedCommand("MaximizeValue", typeof(Slider));
System\Windows\Controls\StickyNote.cs (2)
489public static readonly RoutedCommand DeleteNoteCommand = new RoutedCommand("DeleteNote", typeof(StickyNoteControl)); 494public static readonly RoutedCommand InkCommand = new RoutedCommand("Ink", typeof(StickyNoteControl));
System\Windows\SystemCommands.cs (5)
21CloseWindowCommand = new RoutedCommand("CloseWindow", typeof(SystemCommands)); 22MaximizeWindowCommand = new RoutedCommand("MaximizeWindow", typeof(SystemCommands)); 23MinimizeWindowCommand = new RoutedCommand("MinimizeWindow", typeof(SystemCommands)); 24RestoreWindowCommand = new RoutedCommand("RestoreWindow", typeof(SystemCommands)); 25ShowSystemMenuCommand = new RoutedCommand("ShowSystemMenu", typeof(SystemCommands));
System\Windows\Window.cs (1)
3337internal static readonly RoutedCommand DialogCancelCommand = new RoutedCommand("DialogCancel", typeof(Window));
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
74FilterCommand = new RoutedCommand("Filter", ownerType);