29 instantiations of RoutedUICommand
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Commands\CommandLibraryHelper.cs (1)
26RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId)
System\Windows\Input\Command\ComponentCommands.cs (1)
504RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand)
System\Windows\Input\Command\MediaCommands.cs (1)
443RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand)
PresentationFramework (19)
System\Windows\Annotations\AnnotationService.cs (6)
452public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 457public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 462public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 467public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 472public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 477public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Controls\DocumentViewer.cs (4)
1424_viewThumbnailsCommand = new RoutedUICommand(SR.DocumentViewerViewThumbnailsCommandText, 1438_fitToWidthCommand = new RoutedUICommand( 1453_fitToHeightCommand = new RoutedUICommand( 1468_fitToMaxPagesAcrossCommand = new RoutedUICommand(
System\Windows\Controls\FlowDocumentReader.cs (1)
649public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1320_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1321_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1322_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1323_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer));
System\Windows\Controls\ListBox.cs (1)
1055new RoutedUICommand(SR.ListBoxSelectAllText, "SelectAll", typeof(ListBox));
System\Windows\Documents\EditingCommands.cs (1)
458command = new RoutedUICommand(commandPropertyName, commandPropertyName, typeof(EditingCommands));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9513DefaultConstructor = delegate () { return new System.Windows.Input.RoutedUICommand(); },
System\Windows\Markup\KnownTypes.cs (1)
1507case KnownElements.RoutedUICommand: o = new System.Windows.Input.RoutedUICommand(); break;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2106RoutedUICommand command = new RoutedUICommand(header, name, typeof(DocumentApplicationDocumentViewer), gestures);
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\RibbonCommands.cs (6)
24AddToQuickAccessToolBarCommand = new RoutedUICommand(RibbonContextMenu.AddToQATText, "AddToQuickAccessToolBar", typeof(RibbonCommands)); 25RemoveFromQuickAccessToolBarCommand = new RoutedUICommand(RibbonContextMenu.RemoveFromQATText, "RemoveFromQuickAccessToolBar", typeof(RibbonCommands)); 26MinimizeRibbonCommand = new RoutedUICommand(RibbonContextMenu.MinimizeTheRibbonText, "MinimizeRibbon", typeof(RibbonCommands)); 27MaximizeRibbonCommand = new RoutedUICommand(RibbonContextMenu.MaximizeTheRibbonText, "MaximizeRibbon", typeof(RibbonCommands)); 28ShowQuickAccessToolBarAboveRibbonCommand = new RoutedUICommand(RibbonContextMenu.ShowQATAboveText, "ShowQuickAccessToolBarAboveRibbon", typeof(RibbonCommands)); 29ShowQuickAccessToolBarBelowRibbonCommand = 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)
24internal static RoutedUICommand CreateUICommand(string name, Type ownerType, byte commandId) 26RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId)
System\Windows\Input\Command\ApplicationCommands.cs (27)
28public static RoutedUICommand Cut 36public static RoutedUICommand Copy 44public static RoutedUICommand Paste 52public static RoutedUICommand Delete 60public static RoutedUICommand Undo 68public static RoutedUICommand Redo 76public static RoutedUICommand Find 84public static RoutedUICommand Replace 92public static RoutedUICommand SelectAll 100public static RoutedUICommand Help 108public static RoutedUICommand New 116public static RoutedUICommand Open 124public static RoutedUICommand Close 133public static RoutedUICommand Save 141public static RoutedUICommand SaveAs 149public static RoutedUICommand Print 157public static RoutedUICommand CancelPrint 165public static RoutedUICommand PrintPreview 173public static RoutedUICommand Properties 181public static RoutedUICommand ContextMenu 189public static RoutedUICommand Stop 197public static RoutedUICommand CorrectionList 210public static RoutedUICommand NotACommand 425private static RoutedUICommand _EnsureCommand(CommandId idCommand) 433RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 483private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\ComponentCommands.cs (31)
25public static RoutedUICommand ScrollPageUp 33public static RoutedUICommand ScrollPageDown 41public static RoutedUICommand ScrollPageLeft 49public static RoutedUICommand ScrollPageRight 57public static RoutedUICommand ScrollByLine 65public static RoutedUICommand MoveLeft 73public static RoutedUICommand MoveRight 81public static RoutedUICommand MoveUp 89public static RoutedUICommand MoveDown 97public static RoutedUICommand MoveToHome 105public static RoutedUICommand MoveToEnd 113public static RoutedUICommand MoveToPageUp 121public static RoutedUICommand MoveToPageDown 129public static RoutedUICommand ExtendSelectionUp 137public static RoutedUICommand ExtendSelectionDown 145public static RoutedUICommand ExtendSelectionLeft 153public static RoutedUICommand ExtendSelectionRight 161public static RoutedUICommand SelectToHome 169public static RoutedUICommand SelectToEnd 177public static RoutedUICommand SelectToPageUp 185public static RoutedUICommand SelectToPageDown 193public static RoutedUICommand MoveFocusUp 201public static RoutedUICommand MoveFocusDown 209public static RoutedUICommand MoveFocusForward 217public static RoutedUICommand MoveFocusBack 225public static RoutedUICommand MoveFocusPageUp 233public static RoutedUICommand MoveFocusPageDown 496private static RoutedUICommand _EnsureCommand(CommandId idCommand) 504RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand) 559private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\MediaCommands.cs (28)
25public static RoutedUICommand Play 33public static RoutedUICommand Pause 41public static RoutedUICommand Stop 49public static RoutedUICommand Record 57public static RoutedUICommand NextTrack 65public static RoutedUICommand PreviousTrack 73public static RoutedUICommand FastForward 81public static RoutedUICommand Rewind 89public static RoutedUICommand ChannelUp 97public static RoutedUICommand ChannelDown 105public static RoutedUICommand TogglePlayPause 113public static RoutedUICommand Select 121public static RoutedUICommand IncreaseVolume 129public static RoutedUICommand DecreaseVolume 136public static RoutedUICommand MuteVolume 143public static RoutedUICommand IncreaseTreble 150public static RoutedUICommand DecreaseTreble 157public static RoutedUICommand IncreaseBass 164public static RoutedUICommand DecreaseBass 171public static RoutedUICommand BoostBass 178public static RoutedUICommand IncreaseMicrophoneVolume 186public static RoutedUICommand DecreaseMicrophoneVolume 193public static RoutedUICommand MuteMicrophoneVolume 200public static RoutedUICommand ToggleMicrophoneOnOff 435private static RoutedUICommand _EnsureCommand(CommandId idCommand) 443RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand) 495private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\NavigationCommands.cs (20)
27public static RoutedUICommand BrowseBack 35public static RoutedUICommand BrowseForward 43public static RoutedUICommand BrowseHome 51public static RoutedUICommand BrowseStop 59public static RoutedUICommand Refresh 67public static RoutedUICommand Favorites 75public static RoutedUICommand Search 84public static RoutedUICommand IncreaseZoom 92public static RoutedUICommand DecreaseZoom 100public static RoutedUICommand Zoom 108public static RoutedUICommand NextPage 116public static RoutedUICommand PreviousPage 124public static RoutedUICommand FirstPage 132public static RoutedUICommand LastPage 140public static RoutedUICommand GoToPage 148public static RoutedUICommand NavigateJournal 322private static RoutedUICommand _EnsureCommand(CommandId idCommand) 330RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 373private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
739RoutedUICommand command = GetIsScrollUp(flickData) ? ComponentCommands.ScrollPageUp : ComponentCommands.ScrollPageDown;
PresentationFramework (214)
MS\Internal\Documents\DocumentGridContextMenu.cs (2)
192private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command) 197private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command, string header, string inputGestureText)
System\Windows\Annotations\AnnotationService.cs (6)
452public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 457public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 462public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 467public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 472public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 477public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (4)
23RoutedUICommand uiCommand = ((ButtonBase)Owner).Command as RoutedUICommand; 68RoutedUICommand uiCommand = bb.Command as RoutedUICommand;
System\Windows\Controls\DataGrid.cs (2)
2063public static RoutedUICommand DeleteCommand 4291public static RoutedUICommand SelectAllCommand
System\Windows\Controls\DocumentViewer.cs (8)
297public static RoutedUICommand ViewThumbnailsCommand 310public static RoutedUICommand FitToWidthCommand 323public static RoutedUICommand FitToHeightCommand 336public static RoutedUICommand FitToMaxPagesAcrossCommand 2585private static RoutedUICommand _viewThumbnailsCommand; 2586private static RoutedUICommand _fitToWidthCommand; 2587private static RoutedUICommand _fitToHeightCommand; 2588private static RoutedUICommand _fitToMaxPagesAcrossCommand;
System\Windows\Controls\FlowDocumentReader.cs (1)
649public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1789private static RoutedUICommand _commandLineDown; // Private LineDown command 1790private static RoutedUICommand _commandLineUp; // Private LineUp command 1791private static RoutedUICommand _commandLineLeft; // Private LineLeft command 1792private static RoutedUICommand _commandLineRight; // Private LineRight command
System\Windows\Controls\ListBox.cs (1)
1054private static RoutedUICommand SelectAllCommand =
System\Windows\Controls\MenuItem.cs (3)
334RoutedUICommand uiCommand; 339uiCommand = menuItem.Command as RoutedUICommand; 348uiCommand = value as RoutedUICommand;
System\Windows\Documents\EditingCommands.cs (178)
31public static RoutedUICommand ToggleInsert { get { return EnsureCommand(ref _ToggleInsert , "ToggleInsert" ); } } 39public static RoutedUICommand Delete { get { return EnsureCommand(ref _Delete , "Delete" ); } } 41internal static RoutedUICommand Clear { get { return EnsureCommand(ref _Clear , "Clear" ); } } 50public static RoutedUICommand Backspace { get { return EnsureCommand(ref _Backspace , "Backspace" ); } } 55public static RoutedUICommand DeleteNextWord { get { return EnsureCommand(ref _DeleteNextWord , "DeleteNextWord" ); } } 60public static RoutedUICommand DeletePreviousWord { get { return EnsureCommand(ref _DeletePreviousWord , "DeletePreviousWord" ); } } 69public static RoutedUICommand EnterParagraphBreak { get { return EnsureCommand(ref _EnterParagraphBreak , "EnterParagraphBreak" ); } } 74public static RoutedUICommand EnterLineBreak { get { return EnsureCommand(ref _EnterLineBreak , "EnterLineBreak" ); } } 87public static RoutedUICommand TabForward { get { return EnsureCommand(ref _TabForward , "TabForward" ); } } 98public static RoutedUICommand TabBackward { get { return EnsureCommand(ref _TabBackward , "TabBackward" ); } } 105public static RoutedUICommand MoveRightByCharacter { get { return EnsureCommand(ref _MoveRightByCharacter , "MoveRightByCharacter" ); } } 110public static RoutedUICommand MoveLeftByCharacter { get { return EnsureCommand(ref _MoveLeftByCharacter , "MoveLeftByCharacter" ); } } 115public static RoutedUICommand MoveRightByWord { get { return EnsureCommand(ref _MoveRightByWord , "MoveRightByWord" ); } } 120public static RoutedUICommand MoveLeftByWord { get { return EnsureCommand(ref _MoveLeftByWord , "MoveLeftByWord" ); } } 125public static RoutedUICommand MoveDownByLine { get { return EnsureCommand(ref _MoveDownByLine , "MoveDownByLine" ); } } 130public static RoutedUICommand MoveUpByLine { get { return EnsureCommand(ref _MoveUpByLine , "MoveUpByLine" ); } } 135public static RoutedUICommand MoveDownByParagraph { get { return EnsureCommand(ref _MoveDownByParagraph , "MoveDownByParagraph" ); } } 140public static RoutedUICommand MoveUpByParagraph { get { return EnsureCommand(ref _MoveUpByParagraph , "MoveUpByParagraph" ); } } 146public static RoutedUICommand MoveDownByPage { get { return EnsureCommand(ref _MoveDownByPage , "MoveDownByPage" ); } } 152public static RoutedUICommand MoveUpByPage { get { return EnsureCommand(ref _MoveUpByPage , "MoveUpByPage" ); } } 158public static RoutedUICommand MoveToLineStart { get { return EnsureCommand(ref _MoveToLineStart , "MoveToLineStart" ); } } 164public static RoutedUICommand MoveToLineEnd { get { return EnsureCommand(ref _MoveToLineEnd , "MoveToLineEnd" ); } } 169public static RoutedUICommand MoveToDocumentStart { get { return EnsureCommand(ref _MoveToDocumentStart , "MoveToDocumentStart" ); } } 174public static RoutedUICommand MoveToDocumentEnd { get { return EnsureCommand(ref _MoveToDocumentEnd , "MoveToDocumentEnd" ); } } 182public static RoutedUICommand SelectRightByCharacter { get { return EnsureCommand(ref _SelectRightByCharacter , "SelectRightByCharacter" ); } } 187public static RoutedUICommand SelectLeftByCharacter { get { return EnsureCommand(ref _SelectLeftByCharacter , "SelectLeftByCharacter" ); } } 192public static RoutedUICommand SelectRightByWord { get { return EnsureCommand(ref _SelectRightByWord , "SelectRightByWord" ); } } 197public static RoutedUICommand SelectLeftByWord { get { return EnsureCommand(ref _SelectLeftByWord , "SelectLeftByWord" ); } } 202public static RoutedUICommand SelectDownByLine { get { return EnsureCommand(ref _SelectDownByLine , "SelectDownByLine" ); } } 207public static RoutedUICommand SelectUpByLine { get { return EnsureCommand(ref _SelectUpByLine , "SelectUpByLine" ); } } 212public static RoutedUICommand SelectDownByParagraph { get { return EnsureCommand(ref _SelectDownByParagraph , "SelectDownByParagraph" ); } } 217public static RoutedUICommand SelectUpByParagraph { get { return EnsureCommand(ref _SelectUpByParagraph , "SelectUpByParagraph" ); } } 222public static RoutedUICommand SelectDownByPage { get { return EnsureCommand(ref _SelectDownByPage , "SelectDownByPage" ); } } 227public static RoutedUICommand SelectUpByPage { get { return EnsureCommand(ref _SelectUpByPage , "SelectUpByPage" ); } } 232public static RoutedUICommand SelectToLineStart { get { return EnsureCommand(ref _SelectToLineStart , "SelectToLineStart" ); } } 237public static RoutedUICommand SelectToLineEnd { get { return EnsureCommand(ref _SelectToLineEnd , "SelectToLineEnd" ); } } 242public static RoutedUICommand SelectToDocumentStart { get { return EnsureCommand(ref _SelectToDocumentStart , "SelectToDocumentStart" ); } } 247public static RoutedUICommand SelectToDocumentEnd { get { return EnsureCommand(ref _SelectToDocumentEnd , "SelectToDocumentEnd" ); } } 261public static RoutedUICommand ToggleBold { get { return EnsureCommand(ref _ToggleBold , "ToggleBold" ); } } 266public static RoutedUICommand ToggleItalic { get { return EnsureCommand(ref _ToggleItalic , "ToggleItalic" ); } } 271public static RoutedUICommand ToggleUnderline { get { return EnsureCommand(ref _ToggleUnderline , "ToggleUnderline" ); } } 276public static RoutedUICommand ToggleSubscript { get { return EnsureCommand(ref _ToggleSubscript , "ToggleSubscript" ); } } 281public static RoutedUICommand ToggleSuperscript { get { return EnsureCommand(ref _ToggleSuperscript , "ToggleSuperscript" ); } } 286public static RoutedUICommand IncreaseFontSize { get { return EnsureCommand(ref _IncreaseFontSize , "IncreaseFontSize" ); } } 291public static RoutedUICommand DecreaseFontSize { get { return EnsureCommand(ref _DecreaseFontSize , "DecreaseFontSize" ); } } 299public static RoutedUICommand AlignLeft { get { return EnsureCommand(ref _AlignLeft , "AlignLeft" ); } } 304public static RoutedUICommand AlignCenter { get { return EnsureCommand(ref _AlignCenter , "AlignCenter" ); } } 309public static RoutedUICommand AlignRight { get { return EnsureCommand(ref _AlignRight , "AlignRight" ); } } 314public static RoutedUICommand AlignJustify { get { return EnsureCommand(ref _AlignJustify , "AlignJustify" ); } } 327public static RoutedUICommand ToggleBullets { get { return EnsureCommand(ref _ToggleBullets , "ToggleBullets" ); } } 337public static RoutedUICommand ToggleNumbering { get { return EnsureCommand(ref _ToggleNumbering , "ToggleNumbering" ); } } 342public static RoutedUICommand IncreaseIndentation { get { return EnsureCommand(ref _IncreaseIndentation, "IncreaseIndentation"); } } 347public static RoutedUICommand DecreaseIndentation { get { return EnsureCommand(ref _DecreaseIndentation, "DecreaseIndentation"); } } 355public static RoutedUICommand CorrectSpellingError { get { return EnsureCommand(ref _CorrectSpellingError, "CorrectSpellingError" ); } } 360public static RoutedUICommand IgnoreSpellingError { get { return EnsureCommand(ref _IgnoreSpellingError, "IgnoreSpellingError" ); } } 376internal static RoutedUICommand Space { get { return EnsureCommand(ref _Space , "Space" ); } } 377internal static RoutedUICommand ShiftSpace { get { return EnsureCommand(ref _ShiftSpace , "ShiftSpace" ); } } 381internal static RoutedUICommand MoveToColumnStart { get { return EnsureCommand(ref _MoveToColumnStart , "MoveToColumnStart" ); } } 382internal static RoutedUICommand MoveToColumnEnd { get { return EnsureCommand(ref _MoveToColumnEnd , "MoveToColumnEnd" ); } } 383internal static RoutedUICommand MoveToWindowTop { get { return EnsureCommand(ref _MoveToWindowTop , "MoveToWindowTop" ); } } 384internal static RoutedUICommand MoveToWindowBottom { get { return EnsureCommand(ref _MoveToWindowBottom , "MoveToWindowBottom" ); } } 388internal static RoutedUICommand SelectToColumnStart { get { return EnsureCommand(ref _SelectToColumnStart , "SelectToColumnStart" ); } } 389internal static RoutedUICommand SelectToColumnEnd { get { return EnsureCommand(ref _SelectToColumnEnd , "SelectToColumnEnd" ); } } 390internal static RoutedUICommand SelectToWindowTop { get { return EnsureCommand(ref _SelectToWindowTop , "SelectToWindowTop" ); } } 391internal static RoutedUICommand SelectToWindowBottom { get { return EnsureCommand(ref _SelectToWindowBottom , "SelectToWindowBottom" ); } } 395internal static RoutedUICommand ResetFormat { get { return EnsureCommand(ref _ResetFormat , "ResetFormat" ); } } 396internal static RoutedUICommand ToggleSpellCheck { get { return EnsureCommand(ref _ToggleSpellCheck , "ToggleSpellCheck" ); } } 404internal static RoutedUICommand ApplyFontSize { get { return EnsureCommand(ref _ApplyFontSize , "ApplyFontSize" ); } } 405internal static RoutedUICommand ApplyFontFamily { get { return EnsureCommand(ref _ApplyFontFamily , "ApplyFontFamily" ); } } 406internal static RoutedUICommand ApplyForeground { get { return EnsureCommand(ref _ApplyForeground , "ApplyForeground" ); } } 407internal static RoutedUICommand ApplyBackground { get { return EnsureCommand(ref _ApplyBackground , "ApplyBackground" ); } } 410internal static RoutedUICommand ApplyInlineFlowDirectionRTL { get { return EnsureCommand(ref _ApplyInlineFlowDirectionRTL , "ApplyInlineFlowDirectionRTL" ); } } 411internal static RoutedUICommand ApplyInlineFlowDirectionLTR { get { return EnsureCommand(ref _ApplyInlineFlowDirectionLTR , "ApplyInlineFlowDirectionLTR" ); } } 415internal static RoutedUICommand ApplySingleSpace { get { return EnsureCommand(ref _ApplySingleSpace , "ApplySingleSpace" ); } } 416internal static RoutedUICommand ApplyOneAndAHalfSpace { get { return EnsureCommand(ref _ApplyOneAndAHalfSpace , "ApplyOneAndAHalfSpace" ); } } 417internal static RoutedUICommand ApplyDoubleSpace { get { return EnsureCommand(ref _ApplyDoubleSpace , "ApplyDoubleSpace" ); } } 418internal static RoutedUICommand ApplyParagraphFlowDirectionRTL { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionRTL , "ApplyParagraphFlowDirectionRTL" ); } } 419internal static RoutedUICommand ApplyParagraphFlowDirectionLTR { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionLTR , "ApplyParagraphFlowDirectionLTR" ); } } 423internal static RoutedUICommand CopyFormat { get { return EnsureCommand(ref _CopyFormat , "CopyFormat" ); } } 424internal static RoutedUICommand PasteFormat { get { return EnsureCommand(ref _PasteFormat , "PasteFormat" ); } } 428internal static RoutedUICommand RemoveListMarkers { get { return EnsureCommand(ref _RemoveListMarkers , "RemoveListMarkers" ); } } 432internal static RoutedUICommand InsertTable { get { return EnsureCommand(ref _InsertTable , "InsertTable" ); } } 433internal static RoutedUICommand InsertRows { get { return EnsureCommand(ref _InsertRows , "InsertRows" ); } } 434internal static RoutedUICommand InsertColumns { get { return EnsureCommand(ref _InsertColumns , "InsertColumns" ); } } 435internal static RoutedUICommand DeleteRows { get { return EnsureCommand(ref _DeleteRows , "DeleteRows" ); } } 436internal static RoutedUICommand DeleteColumns { get { return EnsureCommand(ref _DeleteColumns , "DeleteColumns" ); } } 437internal static RoutedUICommand MergeCells { get { return EnsureCommand(ref _MergeCells , "MergeCells" ); } } 438internal static RoutedUICommand SplitCell { get { return EnsureCommand(ref _SplitCell , "SplitCell" ); } } 451private static RoutedUICommand EnsureCommand(ref RoutedUICommand command, string commandPropertyName) 478private static RoutedUICommand _ToggleInsert; 479private static RoutedUICommand _Delete; 480private static RoutedUICommand _Clear; 481private static RoutedUICommand _Backspace; 482private static RoutedUICommand _DeleteNextWord; 483private static RoutedUICommand _DeletePreviousWord; 484private static RoutedUICommand _EnterParagraphBreak; 485private static RoutedUICommand _EnterLineBreak; 486private static RoutedUICommand _TabForward; 487private static RoutedUICommand _TabBackward; 488private static RoutedUICommand _Space; 489private static RoutedUICommand _ShiftSpace; 493private static RoutedUICommand _MoveRightByCharacter; 494private static RoutedUICommand _MoveLeftByCharacter; 495private static RoutedUICommand _MoveRightByWord; 496private static RoutedUICommand _MoveLeftByWord; 497private static RoutedUICommand _MoveDownByLine; 498private static RoutedUICommand _MoveUpByLine; 499private static RoutedUICommand _MoveDownByParagraph; 500private static RoutedUICommand _MoveUpByParagraph; 501private static RoutedUICommand _MoveDownByPage; 502private static RoutedUICommand _MoveUpByPage; 503private static RoutedUICommand _MoveToLineStart; 504private static RoutedUICommand _MoveToLineEnd; 505private static RoutedUICommand _MoveToColumnStart; 506private static RoutedUICommand _MoveToColumnEnd; 507private static RoutedUICommand _MoveToWindowTop; 508private static RoutedUICommand _MoveToWindowBottom; 509private static RoutedUICommand _MoveToDocumentStart; 510private static RoutedUICommand _MoveToDocumentEnd; 514private static RoutedUICommand _SelectRightByCharacter; 515private static RoutedUICommand _SelectLeftByCharacter; 516private static RoutedUICommand _SelectRightByWord; 517private static RoutedUICommand _SelectLeftByWord; 518private static RoutedUICommand _SelectDownByLine; 519private static RoutedUICommand _SelectUpByLine; 520private static RoutedUICommand _SelectDownByParagraph; 521private static RoutedUICommand _SelectUpByParagraph; 522private static RoutedUICommand _SelectDownByPage; 523private static RoutedUICommand _SelectUpByPage; 524private static RoutedUICommand _SelectToLineStart; 525private static RoutedUICommand _SelectToLineEnd; 526private static RoutedUICommand _SelectToColumnStart; 527private static RoutedUICommand _SelectToColumnEnd; 528private static RoutedUICommand _SelectToWindowTop; 529private static RoutedUICommand _SelectToWindowBottom; 530private static RoutedUICommand _SelectToDocumentStart; 531private static RoutedUICommand _SelectToDocumentEnd; 535private static RoutedUICommand _CopyFormat; 536private static RoutedUICommand _PasteFormat; 537private static RoutedUICommand _ResetFormat; 538private static RoutedUICommand _ToggleBold; 539private static RoutedUICommand _ToggleItalic; 540private static RoutedUICommand _ToggleUnderline; 541private static RoutedUICommand _ToggleSubscript; 542private static RoutedUICommand _ToggleSuperscript; 543private static RoutedUICommand _IncreaseFontSize; 544private static RoutedUICommand _DecreaseFontSize; 545private static RoutedUICommand _ApplyFontSize; 546private static RoutedUICommand _ApplyFontFamily; 547private static RoutedUICommand _ApplyForeground; 548private static RoutedUICommand _ApplyBackground; 549private static RoutedUICommand _ToggleSpellCheck; 550private static RoutedUICommand _ApplyInlineFlowDirectionRTL; 551private static RoutedUICommand _ApplyInlineFlowDirectionLTR; 555private static RoutedUICommand _AlignLeft; 556private static RoutedUICommand _AlignCenter; 557private static RoutedUICommand _AlignRight; 558private static RoutedUICommand _AlignJustify; 559private static RoutedUICommand _ApplySingleSpace; 560private static RoutedUICommand _ApplyOneAndAHalfSpace; 561private static RoutedUICommand _ApplyDoubleSpace; 562private static RoutedUICommand _IncreaseIndentation; 563private static RoutedUICommand _DecreaseIndentation; 564private static RoutedUICommand _ApplyParagraphFlowDirectionRTL; 565private static RoutedUICommand _ApplyParagraphFlowDirectionLTR; 569private static RoutedUICommand _RemoveListMarkers; 570private static RoutedUICommand _ToggleBullets; 571private static RoutedUICommand _ToggleNumbering; 575private static RoutedUICommand _InsertTable; 576private static RoutedUICommand _InsertRows; 577private static RoutedUICommand _InsertColumns; 578private static RoutedUICommand _DeleteRows; 579private static RoutedUICommand _DeleteColumns; 580private static RoutedUICommand _MergeCells; 581private static RoutedUICommand _SplitCell; 585private static RoutedUICommand _CorrectSpellingError; 586private static RoutedUICommand _IgnoreSpellingError;
System\Windows\Input\Command\CommandConverter.cs (2)
237private static RoutedUICommand GetKnownCommand( string localName, Type ownerType ) 239RoutedUICommand knownCommand = null;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
632case 539: t = () => typeof(RoutedUICommand); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9510typeof(System.Windows.Input.RoutedUICommand),
System\Windows\Markup\KnownTypes.cs (1)
6086case KnownElements.RoutedUICommand: t = typeof(System.Windows.Input.RoutedUICommand); break;
PresentationUI (20)
MS\Internal\Documents\Application\CommandEnforcer.cs (3)
24public PolicyBinding(RoutedUICommand command, RightsManagementPolicy policy) 35public RoutedUICommand Command 48private RoutedUICommand _command;
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (17)
72public static RoutedUICommand FocusToolBar 83public static RoutedUICommand Sign 94public static RoutedUICommand RequestSigners 105public static RoutedUICommand ShowSignatureSummary 116public static RoutedUICommand ShowRMPermissions 127public static RoutedUICommand ShowRMCredentialManager 138public static RoutedUICommand ShowRMPublishingUI 2102private static RoutedUICommand CreateAndBindCommand(string name, string header, InputGestureCollection gestures, 2106RoutedUICommand command = new RoutedUICommand(header, name, typeof(DocumentApplicationDocumentViewer), gestures); 2119private static void BindCommand(RoutedUICommand command, ExecutedRoutedEventHandler executeHandler, 2199private static RoutedUICommand _focusToolBarCommand; 2200private static RoutedUICommand _signCommand; 2201private static RoutedUICommand _requestSignersCommand; 2202private static RoutedUICommand _showSignatureSummaryCommand; 2203private static RoutedUICommand _showRMPermissionsCommand; 2204private static RoutedUICommand _showRMCredentialManagerCommand; 2205private static RoutedUICommand _showRMPublishingUICommand;
System.Windows.Controls.Ribbon (8)
Microsoft\Windows\Automation\Peers\RibbonTextBoxAutomationPeer.cs (2)
107RoutedUICommand uiCommand = ((RibbonTextBox)Owner).Command as RoutedUICommand;
Microsoft\Windows\Controls\Ribbon\RibbonCommands.cs (6)
15public static RoutedUICommand AddToQuickAccessToolBarCommand { get; private set; } 16public static RoutedUICommand RemoveFromQuickAccessToolBarCommand { get; private set; } 17public static RoutedUICommand MinimizeRibbonCommand { get; private set; } 18public static RoutedUICommand MaximizeRibbonCommand { get; private set; } 19public static RoutedUICommand ShowQuickAccessToolBarAboveRibbonCommand { get; private set; } 20public static RoutedUICommand ShowQuickAccessToolBarBelowRibbonCommand { get; private set; }