29 instantiations of RoutedUICommand
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Commands\CommandLibraryHelper.cs (1)
27RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId)
System\Windows\Input\Command\ComponentCommands.cs (1)
505RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand)
System\Windows\Input\Command\MediaCommands.cs (1)
444RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand)
PresentationFramework (19)
System\Windows\Annotations\AnnotationService.cs (6)
453public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 458public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 463public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 468public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 473public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 478public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Controls\DocumentViewer.cs (4)
1479_viewThumbnailsCommand = new RoutedUICommand(SR.DocumentViewerViewThumbnailsCommandText, 1493_fitToWidthCommand = new RoutedUICommand( 1508_fitToHeightCommand = new RoutedUICommand( 1523_fitToMaxPagesAcrossCommand = new RoutedUICommand(
System\Windows\Controls\FlowDocumentReader.cs (1)
650public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1336_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1337_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1338_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1339_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer));
System\Windows\Controls\ListBox.cs (1)
1060new RoutedUICommand(SR.ListBoxSelectAllText, "SelectAll", typeof(ListBox));
System\Windows\Documents\EditingCommands.cs (1)
459command = new RoutedUICommand(commandPropertyName, commandPropertyName, typeof(EditingCommands));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9514DefaultConstructor = delegate () { return new System.Windows.Input.RoutedUICommand(); },
System\Windows\Markup\KnownTypes.cs (1)
1508case KnownElements.RoutedUICommand: o = new System.Windows.Input.RoutedUICommand(); break;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2110RoutedUICommand command = new RoutedUICommand(header, name, typeof(DocumentApplicationDocumentViewer), gestures);
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\RibbonCommands.cs (6)
25AddToQuickAccessToolBarCommand = new RoutedUICommand(RibbonContextMenu.AddToQATText, "AddToQuickAccessToolBar", typeof(RibbonCommands)); 26RemoveFromQuickAccessToolBarCommand = new RoutedUICommand(RibbonContextMenu.RemoveFromQATText, "RemoveFromQuickAccessToolBar", typeof(RibbonCommands)); 27MinimizeRibbonCommand = new RoutedUICommand(RibbonContextMenu.MinimizeTheRibbonText, "MinimizeRibbon", typeof(RibbonCommands)); 28MaximizeRibbonCommand = new RoutedUICommand(RibbonContextMenu.MaximizeTheRibbonText, "MaximizeRibbon", typeof(RibbonCommands)); 29ShowQuickAccessToolBarAboveRibbonCommand = new RoutedUICommand(RibbonContextMenu.ShowQATAboveText, "ShowQuickAccessToolBarAboveRibbon", typeof(RibbonCommands)); 30ShowQuickAccessToolBarBelowRibbonCommand = new RoutedUICommand(RibbonContextMenu.ShowQATBelowText, "ShowQuickAccessToolBarBelowRibbon", typeof(RibbonCommands));
351 references to RoutedUICommand
PresentationCore (109)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Commands\CommandLibraryHelper.cs (2)
25internal static RoutedUICommand CreateUICommand(string name, Type ownerType, byte commandId) 27RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId)
System\Windows\Input\Command\ApplicationCommands.cs (27)
29public static RoutedUICommand Cut 37public static RoutedUICommand Copy 45public static RoutedUICommand Paste 53public static RoutedUICommand Delete 61public static RoutedUICommand Undo 69public static RoutedUICommand Redo 77public static RoutedUICommand Find 85public static RoutedUICommand Replace 93public static RoutedUICommand SelectAll 101public static RoutedUICommand Help 109public static RoutedUICommand New 117public static RoutedUICommand Open 125public static RoutedUICommand Close 134public static RoutedUICommand Save 142public static RoutedUICommand SaveAs 150public static RoutedUICommand Print 158public static RoutedUICommand CancelPrint 166public static RoutedUICommand PrintPreview 174public static RoutedUICommand Properties 182public static RoutedUICommand ContextMenu 190public static RoutedUICommand Stop 198public static RoutedUICommand CorrectionList 211public static RoutedUICommand NotACommand 426private static RoutedUICommand _EnsureCommand(CommandId idCommand) 434RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 484private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\ComponentCommands.cs (31)
26public static RoutedUICommand ScrollPageUp 34public static RoutedUICommand ScrollPageDown 42public static RoutedUICommand ScrollPageLeft 50public static RoutedUICommand ScrollPageRight 58public static RoutedUICommand ScrollByLine 66public static RoutedUICommand MoveLeft 74public static RoutedUICommand MoveRight 82public static RoutedUICommand MoveUp 90public static RoutedUICommand MoveDown 98public static RoutedUICommand MoveToHome 106public static RoutedUICommand MoveToEnd 114public static RoutedUICommand MoveToPageUp 122public static RoutedUICommand MoveToPageDown 130public static RoutedUICommand ExtendSelectionUp 138public static RoutedUICommand ExtendSelectionDown 146public static RoutedUICommand ExtendSelectionLeft 154public static RoutedUICommand ExtendSelectionRight 162public static RoutedUICommand SelectToHome 170public static RoutedUICommand SelectToEnd 178public static RoutedUICommand SelectToPageUp 186public static RoutedUICommand SelectToPageDown 194public static RoutedUICommand MoveFocusUp 202public static RoutedUICommand MoveFocusDown 210public static RoutedUICommand MoveFocusForward 218public static RoutedUICommand MoveFocusBack 226public static RoutedUICommand MoveFocusPageUp 234public static RoutedUICommand MoveFocusPageDown 497private static RoutedUICommand _EnsureCommand(CommandId idCommand) 505RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand) 560private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\MediaCommands.cs (28)
26public static RoutedUICommand Play 34public static RoutedUICommand Pause 42public static RoutedUICommand Stop 50public static RoutedUICommand Record 58public static RoutedUICommand NextTrack 66public static RoutedUICommand PreviousTrack 74public static RoutedUICommand FastForward 82public static RoutedUICommand Rewind 90public static RoutedUICommand ChannelUp 98public static RoutedUICommand ChannelDown 106public static RoutedUICommand TogglePlayPause 114public static RoutedUICommand Select 122public static RoutedUICommand IncreaseVolume 130public static RoutedUICommand DecreaseVolume 137public static RoutedUICommand MuteVolume 144public static RoutedUICommand IncreaseTreble 151public static RoutedUICommand DecreaseTreble 158public static RoutedUICommand IncreaseBass 165public static RoutedUICommand DecreaseBass 172public static RoutedUICommand BoostBass 179public static RoutedUICommand IncreaseMicrophoneVolume 187public static RoutedUICommand DecreaseMicrophoneVolume 194public static RoutedUICommand MuteMicrophoneVolume 201public static RoutedUICommand ToggleMicrophoneOnOff 436private static RoutedUICommand _EnsureCommand(CommandId idCommand) 444RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand) 496private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\NavigationCommands.cs (20)
28public static RoutedUICommand BrowseBack 36public static RoutedUICommand BrowseForward 44public static RoutedUICommand BrowseHome 52public static RoutedUICommand BrowseStop 60public static RoutedUICommand Refresh 68public static RoutedUICommand Favorites 76public static RoutedUICommand Search 85public static RoutedUICommand IncreaseZoom 93public static RoutedUICommand DecreaseZoom 101public static RoutedUICommand Zoom 109public static RoutedUICommand NextPage 117public static RoutedUICommand PreviousPage 125public static RoutedUICommand FirstPage 133public static RoutedUICommand LastPage 141public static RoutedUICommand GoToPage 149public static RoutedUICommand NavigateJournal 323private static RoutedUICommand _EnsureCommand(CommandId idCommand) 331RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 374private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
746RoutedUICommand command = GetIsScrollUp(flickData) ? ComponentCommands.ScrollPageUp : ComponentCommands.ScrollPageDown;
PresentationFramework (214)
MS\Internal\Documents\DocumentGridContextMenu.cs (2)
193private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command) 198private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command, string header, string inputGestureText)
System\Windows\Annotations\AnnotationService.cs (6)
453public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 458public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 463public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 468public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 473public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 478public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (4)
24RoutedUICommand uiCommand = ((ButtonBase)Owner).Command as RoutedUICommand; 69RoutedUICommand uiCommand = bb.Command as RoutedUICommand;
System\Windows\Controls\DataGrid.cs (2)
2073public static RoutedUICommand DeleteCommand 4325public static RoutedUICommand SelectAllCommand
System\Windows\Controls\DocumentViewer.cs (8)
301public static RoutedUICommand ViewThumbnailsCommand 314public static RoutedUICommand FitToWidthCommand 327public static RoutedUICommand FitToHeightCommand 340public static RoutedUICommand FitToMaxPagesAcrossCommand 2646private static RoutedUICommand _viewThumbnailsCommand; 2647private static RoutedUICommand _fitToWidthCommand; 2648private static RoutedUICommand _fitToHeightCommand; 2649private static RoutedUICommand _fitToMaxPagesAcrossCommand;
System\Windows\Controls\FlowDocumentReader.cs (1)
650public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1832private static RoutedUICommand _commandLineDown; // Private LineDown command 1833private static RoutedUICommand _commandLineUp; // Private LineUp command 1834private static RoutedUICommand _commandLineLeft; // Private LineLeft command 1835private static RoutedUICommand _commandLineRight; // Private LineRight command
System\Windows\Controls\ListBox.cs (1)
1059private static RoutedUICommand SelectAllCommand =
System\Windows\Controls\MenuItem.cs (3)
335RoutedUICommand uiCommand; 340uiCommand = menuItem.Command as RoutedUICommand; 349uiCommand = value as RoutedUICommand;
System\Windows\Documents\EditingCommands.cs (178)
32public static RoutedUICommand ToggleInsert { get { return EnsureCommand(ref _ToggleInsert , "ToggleInsert" ); } } 40public static RoutedUICommand Delete { get { return EnsureCommand(ref _Delete , "Delete" ); } } 42internal static RoutedUICommand Clear { get { return EnsureCommand(ref _Clear , "Clear" ); } } 51public static RoutedUICommand Backspace { get { return EnsureCommand(ref _Backspace , "Backspace" ); } } 56public static RoutedUICommand DeleteNextWord { get { return EnsureCommand(ref _DeleteNextWord , "DeleteNextWord" ); } } 61public static RoutedUICommand DeletePreviousWord { get { return EnsureCommand(ref _DeletePreviousWord , "DeletePreviousWord" ); } } 70public static RoutedUICommand EnterParagraphBreak { get { return EnsureCommand(ref _EnterParagraphBreak , "EnterParagraphBreak" ); } } 75public static RoutedUICommand EnterLineBreak { get { return EnsureCommand(ref _EnterLineBreak , "EnterLineBreak" ); } } 88public static RoutedUICommand TabForward { get { return EnsureCommand(ref _TabForward , "TabForward" ); } } 99public static RoutedUICommand TabBackward { get { return EnsureCommand(ref _TabBackward , "TabBackward" ); } } 106public static RoutedUICommand MoveRightByCharacter { get { return EnsureCommand(ref _MoveRightByCharacter , "MoveRightByCharacter" ); } } 111public static RoutedUICommand MoveLeftByCharacter { get { return EnsureCommand(ref _MoveLeftByCharacter , "MoveLeftByCharacter" ); } } 116public static RoutedUICommand MoveRightByWord { get { return EnsureCommand(ref _MoveRightByWord , "MoveRightByWord" ); } } 121public static RoutedUICommand MoveLeftByWord { get { return EnsureCommand(ref _MoveLeftByWord , "MoveLeftByWord" ); } } 126public static RoutedUICommand MoveDownByLine { get { return EnsureCommand(ref _MoveDownByLine , "MoveDownByLine" ); } } 131public static RoutedUICommand MoveUpByLine { get { return EnsureCommand(ref _MoveUpByLine , "MoveUpByLine" ); } } 136public static RoutedUICommand MoveDownByParagraph { get { return EnsureCommand(ref _MoveDownByParagraph , "MoveDownByParagraph" ); } } 141public static RoutedUICommand MoveUpByParagraph { get { return EnsureCommand(ref _MoveUpByParagraph , "MoveUpByParagraph" ); } } 147public static RoutedUICommand MoveDownByPage { get { return EnsureCommand(ref _MoveDownByPage , "MoveDownByPage" ); } } 153public static RoutedUICommand MoveUpByPage { get { return EnsureCommand(ref _MoveUpByPage , "MoveUpByPage" ); } } 159public static RoutedUICommand MoveToLineStart { get { return EnsureCommand(ref _MoveToLineStart , "MoveToLineStart" ); } } 165public static RoutedUICommand MoveToLineEnd { get { return EnsureCommand(ref _MoveToLineEnd , "MoveToLineEnd" ); } } 170public static RoutedUICommand MoveToDocumentStart { get { return EnsureCommand(ref _MoveToDocumentStart , "MoveToDocumentStart" ); } } 175public static RoutedUICommand MoveToDocumentEnd { get { return EnsureCommand(ref _MoveToDocumentEnd , "MoveToDocumentEnd" ); } } 183public static RoutedUICommand SelectRightByCharacter { get { return EnsureCommand(ref _SelectRightByCharacter , "SelectRightByCharacter" ); } } 188public static RoutedUICommand SelectLeftByCharacter { get { return EnsureCommand(ref _SelectLeftByCharacter , "SelectLeftByCharacter" ); } } 193public static RoutedUICommand SelectRightByWord { get { return EnsureCommand(ref _SelectRightByWord , "SelectRightByWord" ); } } 198public static RoutedUICommand SelectLeftByWord { get { return EnsureCommand(ref _SelectLeftByWord , "SelectLeftByWord" ); } } 203public static RoutedUICommand SelectDownByLine { get { return EnsureCommand(ref _SelectDownByLine , "SelectDownByLine" ); } } 208public static RoutedUICommand SelectUpByLine { get { return EnsureCommand(ref _SelectUpByLine , "SelectUpByLine" ); } } 213public static RoutedUICommand SelectDownByParagraph { get { return EnsureCommand(ref _SelectDownByParagraph , "SelectDownByParagraph" ); } } 218public static RoutedUICommand SelectUpByParagraph { get { return EnsureCommand(ref _SelectUpByParagraph , "SelectUpByParagraph" ); } } 223public static RoutedUICommand SelectDownByPage { get { return EnsureCommand(ref _SelectDownByPage , "SelectDownByPage" ); } } 228public static RoutedUICommand SelectUpByPage { get { return EnsureCommand(ref _SelectUpByPage , "SelectUpByPage" ); } } 233public static RoutedUICommand SelectToLineStart { get { return EnsureCommand(ref _SelectToLineStart , "SelectToLineStart" ); } } 238public static RoutedUICommand SelectToLineEnd { get { return EnsureCommand(ref _SelectToLineEnd , "SelectToLineEnd" ); } } 243public static RoutedUICommand SelectToDocumentStart { get { return EnsureCommand(ref _SelectToDocumentStart , "SelectToDocumentStart" ); } } 248public static RoutedUICommand SelectToDocumentEnd { get { return EnsureCommand(ref _SelectToDocumentEnd , "SelectToDocumentEnd" ); } } 262public static RoutedUICommand ToggleBold { get { return EnsureCommand(ref _ToggleBold , "ToggleBold" ); } } 267public static RoutedUICommand ToggleItalic { get { return EnsureCommand(ref _ToggleItalic , "ToggleItalic" ); } } 272public static RoutedUICommand ToggleUnderline { get { return EnsureCommand(ref _ToggleUnderline , "ToggleUnderline" ); } } 277public static RoutedUICommand ToggleSubscript { get { return EnsureCommand(ref _ToggleSubscript , "ToggleSubscript" ); } } 282public static RoutedUICommand ToggleSuperscript { get { return EnsureCommand(ref _ToggleSuperscript , "ToggleSuperscript" ); } } 287public static RoutedUICommand IncreaseFontSize { get { return EnsureCommand(ref _IncreaseFontSize , "IncreaseFontSize" ); } } 292public static RoutedUICommand DecreaseFontSize { get { return EnsureCommand(ref _DecreaseFontSize , "DecreaseFontSize" ); } } 300public static RoutedUICommand AlignLeft { get { return EnsureCommand(ref _AlignLeft , "AlignLeft" ); } } 305public static RoutedUICommand AlignCenter { get { return EnsureCommand(ref _AlignCenter , "AlignCenter" ); } } 310public static RoutedUICommand AlignRight { get { return EnsureCommand(ref _AlignRight , "AlignRight" ); } } 315public static RoutedUICommand AlignJustify { get { return EnsureCommand(ref _AlignJustify , "AlignJustify" ); } } 328public static RoutedUICommand ToggleBullets { get { return EnsureCommand(ref _ToggleBullets , "ToggleBullets" ); } } 338public static RoutedUICommand ToggleNumbering { get { return EnsureCommand(ref _ToggleNumbering , "ToggleNumbering" ); } } 343public static RoutedUICommand IncreaseIndentation { get { return EnsureCommand(ref _IncreaseIndentation, "IncreaseIndentation"); } } 348public static RoutedUICommand DecreaseIndentation { get { return EnsureCommand(ref _DecreaseIndentation, "DecreaseIndentation"); } } 356public static RoutedUICommand CorrectSpellingError { get { return EnsureCommand(ref _CorrectSpellingError, "CorrectSpellingError" ); } } 361public static RoutedUICommand IgnoreSpellingError { get { return EnsureCommand(ref _IgnoreSpellingError, "IgnoreSpellingError" ); } } 377internal static RoutedUICommand Space { get { return EnsureCommand(ref _Space , "Space" ); } } 378internal static RoutedUICommand ShiftSpace { get { return EnsureCommand(ref _ShiftSpace , "ShiftSpace" ); } } 382internal static RoutedUICommand MoveToColumnStart { get { return EnsureCommand(ref _MoveToColumnStart , "MoveToColumnStart" ); } } 383internal static RoutedUICommand MoveToColumnEnd { get { return EnsureCommand(ref _MoveToColumnEnd , "MoveToColumnEnd" ); } } 384internal static RoutedUICommand MoveToWindowTop { get { return EnsureCommand(ref _MoveToWindowTop , "MoveToWindowTop" ); } } 385internal static RoutedUICommand MoveToWindowBottom { get { return EnsureCommand(ref _MoveToWindowBottom , "MoveToWindowBottom" ); } } 389internal static RoutedUICommand SelectToColumnStart { get { return EnsureCommand(ref _SelectToColumnStart , "SelectToColumnStart" ); } } 390internal static RoutedUICommand SelectToColumnEnd { get { return EnsureCommand(ref _SelectToColumnEnd , "SelectToColumnEnd" ); } } 391internal static RoutedUICommand SelectToWindowTop { get { return EnsureCommand(ref _SelectToWindowTop , "SelectToWindowTop" ); } } 392internal static RoutedUICommand SelectToWindowBottom { get { return EnsureCommand(ref _SelectToWindowBottom , "SelectToWindowBottom" ); } } 396internal static RoutedUICommand ResetFormat { get { return EnsureCommand(ref _ResetFormat , "ResetFormat" ); } } 397internal static RoutedUICommand ToggleSpellCheck { get { return EnsureCommand(ref _ToggleSpellCheck , "ToggleSpellCheck" ); } } 405internal static RoutedUICommand ApplyFontSize { get { return EnsureCommand(ref _ApplyFontSize , "ApplyFontSize" ); } } 406internal static RoutedUICommand ApplyFontFamily { get { return EnsureCommand(ref _ApplyFontFamily , "ApplyFontFamily" ); } } 407internal static RoutedUICommand ApplyForeground { get { return EnsureCommand(ref _ApplyForeground , "ApplyForeground" ); } } 408internal static RoutedUICommand ApplyBackground { get { return EnsureCommand(ref _ApplyBackground , "ApplyBackground" ); } } 411internal static RoutedUICommand ApplyInlineFlowDirectionRTL { get { return EnsureCommand(ref _ApplyInlineFlowDirectionRTL , "ApplyInlineFlowDirectionRTL" ); } } 412internal static RoutedUICommand ApplyInlineFlowDirectionLTR { get { return EnsureCommand(ref _ApplyInlineFlowDirectionLTR , "ApplyInlineFlowDirectionLTR" ); } } 416internal static RoutedUICommand ApplySingleSpace { get { return EnsureCommand(ref _ApplySingleSpace , "ApplySingleSpace" ); } } 417internal static RoutedUICommand ApplyOneAndAHalfSpace { get { return EnsureCommand(ref _ApplyOneAndAHalfSpace , "ApplyOneAndAHalfSpace" ); } } 418internal static RoutedUICommand ApplyDoubleSpace { get { return EnsureCommand(ref _ApplyDoubleSpace , "ApplyDoubleSpace" ); } } 419internal static RoutedUICommand ApplyParagraphFlowDirectionRTL { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionRTL , "ApplyParagraphFlowDirectionRTL" ); } } 420internal static RoutedUICommand ApplyParagraphFlowDirectionLTR { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionLTR , "ApplyParagraphFlowDirectionLTR" ); } } 424internal static RoutedUICommand CopyFormat { get { return EnsureCommand(ref _CopyFormat , "CopyFormat" ); } } 425internal static RoutedUICommand PasteFormat { get { return EnsureCommand(ref _PasteFormat , "PasteFormat" ); } } 429internal static RoutedUICommand RemoveListMarkers { get { return EnsureCommand(ref _RemoveListMarkers , "RemoveListMarkers" ); } } 433internal static RoutedUICommand InsertTable { get { return EnsureCommand(ref _InsertTable , "InsertTable" ); } } 434internal static RoutedUICommand InsertRows { get { return EnsureCommand(ref _InsertRows , "InsertRows" ); } } 435internal static RoutedUICommand InsertColumns { get { return EnsureCommand(ref _InsertColumns , "InsertColumns" ); } } 436internal static RoutedUICommand DeleteRows { get { return EnsureCommand(ref _DeleteRows , "DeleteRows" ); } } 437internal static RoutedUICommand DeleteColumns { get { return EnsureCommand(ref _DeleteColumns , "DeleteColumns" ); } } 438internal static RoutedUICommand MergeCells { get { return EnsureCommand(ref _MergeCells , "MergeCells" ); } } 439internal static RoutedUICommand SplitCell { get { return EnsureCommand(ref _SplitCell , "SplitCell" ); } } 452private static RoutedUICommand EnsureCommand(ref RoutedUICommand command, string commandPropertyName) 479private static RoutedUICommand _ToggleInsert; 480private static RoutedUICommand _Delete; 481private static RoutedUICommand _Clear; 482private static RoutedUICommand _Backspace; 483private static RoutedUICommand _DeleteNextWord; 484private static RoutedUICommand _DeletePreviousWord; 485private static RoutedUICommand _EnterParagraphBreak; 486private static RoutedUICommand _EnterLineBreak; 487private static RoutedUICommand _TabForward; 488private static RoutedUICommand _TabBackward; 489private static RoutedUICommand _Space; 490private static RoutedUICommand _ShiftSpace; 494private static RoutedUICommand _MoveRightByCharacter; 495private static RoutedUICommand _MoveLeftByCharacter; 496private static RoutedUICommand _MoveRightByWord; 497private static RoutedUICommand _MoveLeftByWord; 498private static RoutedUICommand _MoveDownByLine; 499private static RoutedUICommand _MoveUpByLine; 500private static RoutedUICommand _MoveDownByParagraph; 501private static RoutedUICommand _MoveUpByParagraph; 502private static RoutedUICommand _MoveDownByPage; 503private static RoutedUICommand _MoveUpByPage; 504private static RoutedUICommand _MoveToLineStart; 505private static RoutedUICommand _MoveToLineEnd; 506private static RoutedUICommand _MoveToColumnStart; 507private static RoutedUICommand _MoveToColumnEnd; 508private static RoutedUICommand _MoveToWindowTop; 509private static RoutedUICommand _MoveToWindowBottom; 510private static RoutedUICommand _MoveToDocumentStart; 511private static RoutedUICommand _MoveToDocumentEnd; 515private static RoutedUICommand _SelectRightByCharacter; 516private static RoutedUICommand _SelectLeftByCharacter; 517private static RoutedUICommand _SelectRightByWord; 518private static RoutedUICommand _SelectLeftByWord; 519private static RoutedUICommand _SelectDownByLine; 520private static RoutedUICommand _SelectUpByLine; 521private static RoutedUICommand _SelectDownByParagraph; 522private static RoutedUICommand _SelectUpByParagraph; 523private static RoutedUICommand _SelectDownByPage; 524private static RoutedUICommand _SelectUpByPage; 525private static RoutedUICommand _SelectToLineStart; 526private static RoutedUICommand _SelectToLineEnd; 527private static RoutedUICommand _SelectToColumnStart; 528private static RoutedUICommand _SelectToColumnEnd; 529private static RoutedUICommand _SelectToWindowTop; 530private static RoutedUICommand _SelectToWindowBottom; 531private static RoutedUICommand _SelectToDocumentStart; 532private static RoutedUICommand _SelectToDocumentEnd; 536private static RoutedUICommand _CopyFormat; 537private static RoutedUICommand _PasteFormat; 538private static RoutedUICommand _ResetFormat; 539private static RoutedUICommand _ToggleBold; 540private static RoutedUICommand _ToggleItalic; 541private static RoutedUICommand _ToggleUnderline; 542private static RoutedUICommand _ToggleSubscript; 543private static RoutedUICommand _ToggleSuperscript; 544private static RoutedUICommand _IncreaseFontSize; 545private static RoutedUICommand _DecreaseFontSize; 546private static RoutedUICommand _ApplyFontSize; 547private static RoutedUICommand _ApplyFontFamily; 548private static RoutedUICommand _ApplyForeground; 549private static RoutedUICommand _ApplyBackground; 550private static RoutedUICommand _ToggleSpellCheck; 551private static RoutedUICommand _ApplyInlineFlowDirectionRTL; 552private static RoutedUICommand _ApplyInlineFlowDirectionLTR; 556private static RoutedUICommand _AlignLeft; 557private static RoutedUICommand _AlignCenter; 558private static RoutedUICommand _AlignRight; 559private static RoutedUICommand _AlignJustify; 560private static RoutedUICommand _ApplySingleSpace; 561private static RoutedUICommand _ApplyOneAndAHalfSpace; 562private static RoutedUICommand _ApplyDoubleSpace; 563private static RoutedUICommand _IncreaseIndentation; 564private static RoutedUICommand _DecreaseIndentation; 565private static RoutedUICommand _ApplyParagraphFlowDirectionRTL; 566private static RoutedUICommand _ApplyParagraphFlowDirectionLTR; 570private static RoutedUICommand _RemoveListMarkers; 571private static RoutedUICommand _ToggleBullets; 572private static RoutedUICommand _ToggleNumbering; 576private static RoutedUICommand _InsertTable; 577private static RoutedUICommand _InsertRows; 578private static RoutedUICommand _InsertColumns; 579private static RoutedUICommand _DeleteRows; 580private static RoutedUICommand _DeleteColumns; 581private static RoutedUICommand _MergeCells; 582private static RoutedUICommand _SplitCell; 586private static RoutedUICommand _CorrectSpellingError; 587private static RoutedUICommand _IgnoreSpellingError;
System\Windows\Input\Command\CommandConverter.cs (2)
238private static RoutedUICommand GetKnownCommand( string localName, Type ownerType ) 240RoutedUICommand knownCommand = null;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
633case 539: t = () => typeof(RoutedUICommand); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9511typeof(System.Windows.Input.RoutedUICommand),
System\Windows\Markup\KnownTypes.cs (1)
6087case KnownElements.RoutedUICommand: t = typeof(System.Windows.Input.RoutedUICommand); break;
PresentationUI (20)
MS\Internal\Documents\Application\CommandEnforcer.cs (3)
25public PolicyBinding(RoutedUICommand command, RightsManagementPolicy policy) 36public RoutedUICommand Command 49private RoutedUICommand _command;
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (17)
73public static RoutedUICommand FocusToolBar 84public static RoutedUICommand Sign 95public static RoutedUICommand RequestSigners 106public static RoutedUICommand ShowSignatureSummary 117public static RoutedUICommand ShowRMPermissions 128public static RoutedUICommand ShowRMCredentialManager 139public static RoutedUICommand ShowRMPublishingUI 2106private static RoutedUICommand CreateAndBindCommand(string name, string header, InputGestureCollection gestures, 2110RoutedUICommand command = new RoutedUICommand(header, name, typeof(DocumentApplicationDocumentViewer), gestures); 2123private static void BindCommand(RoutedUICommand command, ExecutedRoutedEventHandler executeHandler, 2203private static RoutedUICommand _focusToolBarCommand; 2204private static RoutedUICommand _signCommand; 2205private static RoutedUICommand _requestSignersCommand; 2206private static RoutedUICommand _showSignatureSummaryCommand; 2207private static RoutedUICommand _showRMPermissionsCommand; 2208private static RoutedUICommand _showRMCredentialManagerCommand; 2209private static RoutedUICommand _showRMPublishingUICommand;
System.Windows.Controls.Ribbon (8)
Microsoft\Windows\Automation\Peers\RibbonTextBoxAutomationPeer.cs (2)
108RoutedUICommand uiCommand = ((RibbonTextBox)Owner).Command as RoutedUICommand;
Microsoft\Windows\Controls\Ribbon\RibbonCommands.cs (6)
16public static RoutedUICommand AddToQuickAccessToolBarCommand { get; private set; } 17public static RoutedUICommand RemoveFromQuickAccessToolBarCommand { get; private set; } 18public static RoutedUICommand MinimizeRibbonCommand { get; private set; } 19public static RoutedUICommand MaximizeRibbonCommand { get; private set; } 20public static RoutedUICommand ShowQuickAccessToolBarAboveRibbonCommand { get; private set; } 21public static RoutedUICommand ShowQuickAccessToolBarBelowRibbonCommand { get; private set; }