1 type derived from RoutedUICommand
PresentationCore (1)
System\Windows\Input\Command\SecureUICommand.cs (1)
27internal class SecureUICommand : RoutedUICommand, ISecureCommand
29 instantiations of RoutedUICommand
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Commands\CommandLibraryHelper.cs (1)
29RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId);
System\Windows\Input\Command\ComponentCommands.cs (1)
519RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand);
System\Windows\Input\Command\MediaCommands.cs (1)
458RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand);
PresentationFramework (19)
System\Windows\Annotations\AnnotationService.cs (6)
466public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 471public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 476public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 481public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 486public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 491public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Controls\DocumentViewer.cs (4)
1491_viewThumbnailsCommand = new RoutedUICommand(SR.DocumentViewerViewThumbnailsCommandText, 1505_fitToWidthCommand = new RoutedUICommand( 1520_fitToHeightCommand = new RoutedUICommand( 1535_fitToMaxPagesAcrossCommand = new RoutedUICommand(
System\Windows\Controls\FlowDocumentReader.cs (1)
655public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1333_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1334_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1335_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1336_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer));
System\Windows\Controls\ListBox.cs (1)
1064new RoutedUICommand(SR.ListBoxSelectAllText, "SelectAll", typeof(ListBox));
System\Windows\Documents\EditingCommands.cs (1)
460command = new RoutedUICommand(commandPropertyName, commandPropertyName, typeof(EditingCommands));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8607bamlType.DefaultConstructor = delegate() { return new System.Windows.Input.RoutedUICommand(); };
System\Windows\Markup\KnownTypes.cs (1)
1514case KnownElements.RoutedUICommand: o = new System.Windows.Input.RoutedUICommand(); break;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2114RoutedUICommand 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)
27internal static RoutedUICommand CreateUICommand(string name, Type ownerType, byte commandId) 29RoutedUICommand routedUICommand = new RoutedUICommand(name, ownerType, commandId);
System\Windows\Input\Command\ApplicationCommands.cs (27)
42public static RoutedUICommand Cut 50public static RoutedUICommand Copy 58public static RoutedUICommand Paste 66public static RoutedUICommand Delete 74public static RoutedUICommand Undo 82public static RoutedUICommand Redo 90public static RoutedUICommand Find 98public static RoutedUICommand Replace 106public static RoutedUICommand SelectAll 114public static RoutedUICommand Help 122public static RoutedUICommand New 130public static RoutedUICommand Open 138public static RoutedUICommand Close 147public static RoutedUICommand Save 155public static RoutedUICommand SaveAs 163public static RoutedUICommand Print 171public static RoutedUICommand CancelPrint 179public static RoutedUICommand PrintPreview 187public static RoutedUICommand Properties 195public static RoutedUICommand ContextMenu 203public static RoutedUICommand Stop 211public static RoutedUICommand CorrectionList 224public static RoutedUICommand NotACommand 439private static RoutedUICommand _EnsureCommand(CommandId idCommand) 447RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 497private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\ComponentCommands.cs (31)
40public static RoutedUICommand ScrollPageUp 48public static RoutedUICommand ScrollPageDown 56public static RoutedUICommand ScrollPageLeft 64public static RoutedUICommand ScrollPageRight 72public static RoutedUICommand ScrollByLine 80public static RoutedUICommand MoveLeft 88public static RoutedUICommand MoveRight 96public static RoutedUICommand MoveUp 104public static RoutedUICommand MoveDown 112public static RoutedUICommand MoveToHome 120public static RoutedUICommand MoveToEnd 128public static RoutedUICommand MoveToPageUp 136public static RoutedUICommand MoveToPageDown 144public static RoutedUICommand ExtendSelectionUp 152public static RoutedUICommand ExtendSelectionDown 160public static RoutedUICommand ExtendSelectionLeft 168public static RoutedUICommand ExtendSelectionRight 176public static RoutedUICommand SelectToHome 184public static RoutedUICommand SelectToEnd 192public static RoutedUICommand SelectToPageUp 200public static RoutedUICommand SelectToPageDown 208public static RoutedUICommand MoveFocusUp 216public static RoutedUICommand MoveFocusDown 224public static RoutedUICommand MoveFocusForward 232public static RoutedUICommand MoveFocusBack 240public static RoutedUICommand MoveFocusPageUp 248public static RoutedUICommand MoveFocusPageDown 511private static RoutedUICommand _EnsureCommand(CommandId idCommand) 519RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand); 572private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\MediaCommands.cs (28)
40public static RoutedUICommand Play 48public static RoutedUICommand Pause 56public static RoutedUICommand Stop 64public static RoutedUICommand Record 72public static RoutedUICommand NextTrack 80public static RoutedUICommand PreviousTrack 88public static RoutedUICommand FastForward 96public static RoutedUICommand Rewind 104public static RoutedUICommand ChannelUp 112public static RoutedUICommand ChannelDown 120public static RoutedUICommand TogglePlayPause 128public static RoutedUICommand Select 136public static RoutedUICommand IncreaseVolume 144public static RoutedUICommand DecreaseVolume 151public static RoutedUICommand MuteVolume 158public static RoutedUICommand IncreaseTreble 165public static RoutedUICommand DecreaseTreble 172public static RoutedUICommand IncreaseBass 179public static RoutedUICommand DecreaseBass 186public static RoutedUICommand BoostBass 193public static RoutedUICommand IncreaseMicrophoneVolume 201public static RoutedUICommand DecreaseMicrophoneVolume 208public static RoutedUICommand MuteMicrophoneVolume 215public static RoutedUICommand ToggleMicrophoneOnOff 450private static RoutedUICommand _EnsureCommand(CommandId idCommand) 458RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand); 508private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Command\NavigationCommands.cs (20)
42public static RoutedUICommand BrowseBack 50public static RoutedUICommand BrowseForward 58public static RoutedUICommand BrowseHome 66public static RoutedUICommand BrowseStop 74public static RoutedUICommand Refresh 82public static RoutedUICommand Favorites 90public static RoutedUICommand Search 99public static RoutedUICommand IncreaseZoom 107public static RoutedUICommand DecreaseZoom 115public static RoutedUICommand Zoom 123public static RoutedUICommand NextPage 131public static RoutedUICommand PreviousPage 139public static RoutedUICommand FirstPage 147public static RoutedUICommand LastPage 155public static RoutedUICommand GoToPage 163public static RoutedUICommand NavigateJournal 337private static RoutedUICommand _EnsureCommand(CommandId idCommand) 345RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 388private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
756RoutedUICommand command = GetIsScrollUp(flickData) ? ComponentCommands.ScrollPageUp : ComponentCommands.ScrollPageDown;
PresentationFramework (214)
MS\Internal\Documents\DocumentGridContextMenu.cs (2)
199private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command) 204private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command, string header, string inputGestureText)
System\Windows\Annotations\AnnotationService.cs (6)
466public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.CreateHighlight, "CreateHighlight", typeof(AnnotationService), null); 471public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.CreateTextNote, "CreateTextStickyNote", typeof(AnnotationService), null); 476public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.CreateInkNote, "CreateInkStickyNote", typeof(AnnotationService), null); 481public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.ClearHighlight, "ClearHighlights", typeof(AnnotationService), null); 486public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.DeleteNotes, "DeleteStickyNotes", typeof(AnnotationService), null); 491public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.DeleteAnnotations, "DeleteAnnotations", typeof(AnnotationService), null);
System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (4)
37RoutedUICommand uiCommand = ((ButtonBase)Owner).Command as RoutedUICommand; 82RoutedUICommand uiCommand = bb.Command as RoutedUICommand;
System\Windows\Controls\DataGrid.cs (2)
2072public static RoutedUICommand DeleteCommand 4324public static RoutedUICommand SelectAllCommand
System\Windows\Controls\DocumentViewer.cs (8)
313public static RoutedUICommand ViewThumbnailsCommand 326public static RoutedUICommand FitToWidthCommand 339public static RoutedUICommand FitToHeightCommand 352public static RoutedUICommand FitToMaxPagesAcrossCommand 2651private static RoutedUICommand _viewThumbnailsCommand; 2652private static RoutedUICommand _fitToWidthCommand; 2653private static RoutedUICommand _fitToHeightCommand; 2654private static RoutedUICommand _fitToMaxPagesAcrossCommand;
System\Windows\Controls\FlowDocumentReader.cs (1)
655public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(Switch_ViewingMode, "SwitchViewingMode", typeof(FlowDocumentReader), null);
System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1829private static RoutedUICommand _commandLineDown; // Private LineDown command 1830private static RoutedUICommand _commandLineUp; // Private LineUp command 1831private static RoutedUICommand _commandLineLeft; // Private LineLeft command 1832private static RoutedUICommand _commandLineRight; // Private LineRight command
System\Windows\Controls\ListBox.cs (1)
1063private static RoutedUICommand SelectAllCommand =
System\Windows\Controls\MenuItem.cs (3)
345RoutedUICommand uiCommand; 350uiCommand = menuItem.Command as RoutedUICommand; 359uiCommand = value as RoutedUICommand;
System\Windows\Documents\EditingCommands.cs (178)
33public static RoutedUICommand ToggleInsert { get { return EnsureCommand(ref _ToggleInsert , "ToggleInsert" ); } } 41public static RoutedUICommand Delete { get { return EnsureCommand(ref _Delete , "Delete" ); } } 43internal static RoutedUICommand Clear { get { return EnsureCommand(ref _Clear , "Clear" ); } } 52public static RoutedUICommand Backspace { get { return EnsureCommand(ref _Backspace , "Backspace" ); } } 57public static RoutedUICommand DeleteNextWord { get { return EnsureCommand(ref _DeleteNextWord , "DeleteNextWord" ); } } 62public static RoutedUICommand DeletePreviousWord { get { return EnsureCommand(ref _DeletePreviousWord , "DeletePreviousWord" ); } } 71public static RoutedUICommand EnterParagraphBreak { get { return EnsureCommand(ref _EnterParagraphBreak , "EnterParagraphBreak" ); } } 76public static RoutedUICommand EnterLineBreak { get { return EnsureCommand(ref _EnterLineBreak , "EnterLineBreak" ); } } 89public static RoutedUICommand TabForward { get { return EnsureCommand(ref _TabForward , "TabForward" ); } } 100public static RoutedUICommand TabBackward { get { return EnsureCommand(ref _TabBackward , "TabBackward" ); } } 107public static RoutedUICommand MoveRightByCharacter { get { return EnsureCommand(ref _MoveRightByCharacter , "MoveRightByCharacter" ); } } 112public static RoutedUICommand MoveLeftByCharacter { get { return EnsureCommand(ref _MoveLeftByCharacter , "MoveLeftByCharacter" ); } } 117public static RoutedUICommand MoveRightByWord { get { return EnsureCommand(ref _MoveRightByWord , "MoveRightByWord" ); } } 122public static RoutedUICommand MoveLeftByWord { get { return EnsureCommand(ref _MoveLeftByWord , "MoveLeftByWord" ); } } 127public static RoutedUICommand MoveDownByLine { get { return EnsureCommand(ref _MoveDownByLine , "MoveDownByLine" ); } } 132public static RoutedUICommand MoveUpByLine { get { return EnsureCommand(ref _MoveUpByLine , "MoveUpByLine" ); } } 137public static RoutedUICommand MoveDownByParagraph { get { return EnsureCommand(ref _MoveDownByParagraph , "MoveDownByParagraph" ); } } 142public static RoutedUICommand MoveUpByParagraph { get { return EnsureCommand(ref _MoveUpByParagraph , "MoveUpByParagraph" ); } } 148public static RoutedUICommand MoveDownByPage { get { return EnsureCommand(ref _MoveDownByPage , "MoveDownByPage" ); } } 154public static RoutedUICommand MoveUpByPage { get { return EnsureCommand(ref _MoveUpByPage , "MoveUpByPage" ); } } 160public static RoutedUICommand MoveToLineStart { get { return EnsureCommand(ref _MoveToLineStart , "MoveToLineStart" ); } } 166public static RoutedUICommand MoveToLineEnd { get { return EnsureCommand(ref _MoveToLineEnd , "MoveToLineEnd" ); } } 171public static RoutedUICommand MoveToDocumentStart { get { return EnsureCommand(ref _MoveToDocumentStart , "MoveToDocumentStart" ); } } 176public static RoutedUICommand MoveToDocumentEnd { get { return EnsureCommand(ref _MoveToDocumentEnd , "MoveToDocumentEnd" ); } } 184public static RoutedUICommand SelectRightByCharacter { get { return EnsureCommand(ref _SelectRightByCharacter , "SelectRightByCharacter" ); } } 189public static RoutedUICommand SelectLeftByCharacter { get { return EnsureCommand(ref _SelectLeftByCharacter , "SelectLeftByCharacter" ); } } 194public static RoutedUICommand SelectRightByWord { get { return EnsureCommand(ref _SelectRightByWord , "SelectRightByWord" ); } } 199public static RoutedUICommand SelectLeftByWord { get { return EnsureCommand(ref _SelectLeftByWord , "SelectLeftByWord" ); } } 204public static RoutedUICommand SelectDownByLine { get { return EnsureCommand(ref _SelectDownByLine , "SelectDownByLine" ); } } 209public static RoutedUICommand SelectUpByLine { get { return EnsureCommand(ref _SelectUpByLine , "SelectUpByLine" ); } } 214public static RoutedUICommand SelectDownByParagraph { get { return EnsureCommand(ref _SelectDownByParagraph , "SelectDownByParagraph" ); } } 219public static RoutedUICommand SelectUpByParagraph { get { return EnsureCommand(ref _SelectUpByParagraph , "SelectUpByParagraph" ); } } 224public static RoutedUICommand SelectDownByPage { get { return EnsureCommand(ref _SelectDownByPage , "SelectDownByPage" ); } } 229public static RoutedUICommand SelectUpByPage { get { return EnsureCommand(ref _SelectUpByPage , "SelectUpByPage" ); } } 234public static RoutedUICommand SelectToLineStart { get { return EnsureCommand(ref _SelectToLineStart , "SelectToLineStart" ); } } 239public static RoutedUICommand SelectToLineEnd { get { return EnsureCommand(ref _SelectToLineEnd , "SelectToLineEnd" ); } } 244public static RoutedUICommand SelectToDocumentStart { get { return EnsureCommand(ref _SelectToDocumentStart , "SelectToDocumentStart" ); } } 249public static RoutedUICommand SelectToDocumentEnd { get { return EnsureCommand(ref _SelectToDocumentEnd , "SelectToDocumentEnd" ); } } 263public static RoutedUICommand ToggleBold { get { return EnsureCommand(ref _ToggleBold , "ToggleBold" ); } } 268public static RoutedUICommand ToggleItalic { get { return EnsureCommand(ref _ToggleItalic , "ToggleItalic" ); } } 273public static RoutedUICommand ToggleUnderline { get { return EnsureCommand(ref _ToggleUnderline , "ToggleUnderline" ); } } 278public static RoutedUICommand ToggleSubscript { get { return EnsureCommand(ref _ToggleSubscript , "ToggleSubscript" ); } } 283public static RoutedUICommand ToggleSuperscript { get { return EnsureCommand(ref _ToggleSuperscript , "ToggleSuperscript" ); } } 288public static RoutedUICommand IncreaseFontSize { get { return EnsureCommand(ref _IncreaseFontSize , "IncreaseFontSize" ); } } 293public static RoutedUICommand DecreaseFontSize { get { return EnsureCommand(ref _DecreaseFontSize , "DecreaseFontSize" ); } } 301public static RoutedUICommand AlignLeft { get { return EnsureCommand(ref _AlignLeft , "AlignLeft" ); } } 306public static RoutedUICommand AlignCenter { get { return EnsureCommand(ref _AlignCenter , "AlignCenter" ); } } 311public static RoutedUICommand AlignRight { get { return EnsureCommand(ref _AlignRight , "AlignRight" ); } } 316public static RoutedUICommand AlignJustify { get { return EnsureCommand(ref _AlignJustify , "AlignJustify" ); } } 329public static RoutedUICommand ToggleBullets { get { return EnsureCommand(ref _ToggleBullets , "ToggleBullets" ); } } 339public static RoutedUICommand ToggleNumbering { get { return EnsureCommand(ref _ToggleNumbering , "ToggleNumbering" ); } } 344public static RoutedUICommand IncreaseIndentation { get { return EnsureCommand(ref _IncreaseIndentation, "IncreaseIndentation"); } } 349public static RoutedUICommand DecreaseIndentation { get { return EnsureCommand(ref _DecreaseIndentation, "DecreaseIndentation"); } } 357public static RoutedUICommand CorrectSpellingError { get { return EnsureCommand(ref _CorrectSpellingError, "CorrectSpellingError" ); } } 362public static RoutedUICommand IgnoreSpellingError { get { return EnsureCommand(ref _IgnoreSpellingError, "IgnoreSpellingError" ); } } 378internal static RoutedUICommand Space { get { return EnsureCommand(ref _Space , "Space" ); } } 379internal static RoutedUICommand ShiftSpace { get { return EnsureCommand(ref _ShiftSpace , "ShiftSpace" ); } } 383internal static RoutedUICommand MoveToColumnStart { get { return EnsureCommand(ref _MoveToColumnStart , "MoveToColumnStart" ); } } 384internal static RoutedUICommand MoveToColumnEnd { get { return EnsureCommand(ref _MoveToColumnEnd , "MoveToColumnEnd" ); } } 385internal static RoutedUICommand MoveToWindowTop { get { return EnsureCommand(ref _MoveToWindowTop , "MoveToWindowTop" ); } } 386internal static RoutedUICommand MoveToWindowBottom { get { return EnsureCommand(ref _MoveToWindowBottom , "MoveToWindowBottom" ); } } 390internal static RoutedUICommand SelectToColumnStart { get { return EnsureCommand(ref _SelectToColumnStart , "SelectToColumnStart" ); } } 391internal static RoutedUICommand SelectToColumnEnd { get { return EnsureCommand(ref _SelectToColumnEnd , "SelectToColumnEnd" ); } } 392internal static RoutedUICommand SelectToWindowTop { get { return EnsureCommand(ref _SelectToWindowTop , "SelectToWindowTop" ); } } 393internal static RoutedUICommand SelectToWindowBottom { get { return EnsureCommand(ref _SelectToWindowBottom , "SelectToWindowBottom" ); } } 397internal static RoutedUICommand ResetFormat { get { return EnsureCommand(ref _ResetFormat , "ResetFormat" ); } } 398internal static RoutedUICommand ToggleSpellCheck { get { return EnsureCommand(ref _ToggleSpellCheck , "ToggleSpellCheck" ); } } 406internal static RoutedUICommand ApplyFontSize { get { return EnsureCommand(ref _ApplyFontSize , "ApplyFontSize" ); } } 407internal static RoutedUICommand ApplyFontFamily { get { return EnsureCommand(ref _ApplyFontFamily , "ApplyFontFamily" ); } } 408internal static RoutedUICommand ApplyForeground { get { return EnsureCommand(ref _ApplyForeground , "ApplyForeground" ); } } 409internal static RoutedUICommand ApplyBackground { get { return EnsureCommand(ref _ApplyBackground , "ApplyBackground" ); } } 412internal static RoutedUICommand ApplyInlineFlowDirectionRTL { get { return EnsureCommand(ref _ApplyInlineFlowDirectionRTL , "ApplyInlineFlowDirectionRTL" ); } } 413internal static RoutedUICommand ApplyInlineFlowDirectionLTR { get { return EnsureCommand(ref _ApplyInlineFlowDirectionLTR , "ApplyInlineFlowDirectionLTR" ); } } 417internal static RoutedUICommand ApplySingleSpace { get { return EnsureCommand(ref _ApplySingleSpace , "ApplySingleSpace" ); } } 418internal static RoutedUICommand ApplyOneAndAHalfSpace { get { return EnsureCommand(ref _ApplyOneAndAHalfSpace , "ApplyOneAndAHalfSpace" ); } } 419internal static RoutedUICommand ApplyDoubleSpace { get { return EnsureCommand(ref _ApplyDoubleSpace , "ApplyDoubleSpace" ); } } 420internal static RoutedUICommand ApplyParagraphFlowDirectionRTL { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionRTL , "ApplyParagraphFlowDirectionRTL" ); } } 421internal static RoutedUICommand ApplyParagraphFlowDirectionLTR { get { return EnsureCommand(ref _ApplyParagraphFlowDirectionLTR , "ApplyParagraphFlowDirectionLTR" ); } } 425internal static RoutedUICommand CopyFormat { get { return EnsureCommand(ref _CopyFormat , "CopyFormat" ); } } 426internal static RoutedUICommand PasteFormat { get { return EnsureCommand(ref _PasteFormat , "PasteFormat" ); } } 430internal static RoutedUICommand RemoveListMarkers { get { return EnsureCommand(ref _RemoveListMarkers , "RemoveListMarkers" ); } } 434internal static RoutedUICommand InsertTable { get { return EnsureCommand(ref _InsertTable , "InsertTable" ); } } 435internal static RoutedUICommand InsertRows { get { return EnsureCommand(ref _InsertRows , "InsertRows" ); } } 436internal static RoutedUICommand InsertColumns { get { return EnsureCommand(ref _InsertColumns , "InsertColumns" ); } } 437internal static RoutedUICommand DeleteRows { get { return EnsureCommand(ref _DeleteRows , "DeleteRows" ); } } 438internal static RoutedUICommand DeleteColumns { get { return EnsureCommand(ref _DeleteColumns , "DeleteColumns" ); } } 439internal static RoutedUICommand MergeCells { get { return EnsureCommand(ref _MergeCells , "MergeCells" ); } } 440internal static RoutedUICommand SplitCell { get { return EnsureCommand(ref _SplitCell , "SplitCell" ); } } 453private static RoutedUICommand EnsureCommand(ref RoutedUICommand command, string commandPropertyName) 480private static RoutedUICommand _ToggleInsert; 481private static RoutedUICommand _Delete; 482private static RoutedUICommand _Clear; 483private static RoutedUICommand _Backspace; 484private static RoutedUICommand _DeleteNextWord; 485private static RoutedUICommand _DeletePreviousWord; 486private static RoutedUICommand _EnterParagraphBreak; 487private static RoutedUICommand _EnterLineBreak; 488private static RoutedUICommand _TabForward; 489private static RoutedUICommand _TabBackward; 490private static RoutedUICommand _Space; 491private static RoutedUICommand _ShiftSpace; 495private static RoutedUICommand _MoveRightByCharacter; 496private static RoutedUICommand _MoveLeftByCharacter; 497private static RoutedUICommand _MoveRightByWord; 498private static RoutedUICommand _MoveLeftByWord; 499private static RoutedUICommand _MoveDownByLine; 500private static RoutedUICommand _MoveUpByLine; 501private static RoutedUICommand _MoveDownByParagraph; 502private static RoutedUICommand _MoveUpByParagraph; 503private static RoutedUICommand _MoveDownByPage; 504private static RoutedUICommand _MoveUpByPage; 505private static RoutedUICommand _MoveToLineStart; 506private static RoutedUICommand _MoveToLineEnd; 507private static RoutedUICommand _MoveToColumnStart; 508private static RoutedUICommand _MoveToColumnEnd; 509private static RoutedUICommand _MoveToWindowTop; 510private static RoutedUICommand _MoveToWindowBottom; 511private static RoutedUICommand _MoveToDocumentStart; 512private static RoutedUICommand _MoveToDocumentEnd; 516private static RoutedUICommand _SelectRightByCharacter; 517private static RoutedUICommand _SelectLeftByCharacter; 518private static RoutedUICommand _SelectRightByWord; 519private static RoutedUICommand _SelectLeftByWord; 520private static RoutedUICommand _SelectDownByLine; 521private static RoutedUICommand _SelectUpByLine; 522private static RoutedUICommand _SelectDownByParagraph; 523private static RoutedUICommand _SelectUpByParagraph; 524private static RoutedUICommand _SelectDownByPage; 525private static RoutedUICommand _SelectUpByPage; 526private static RoutedUICommand _SelectToLineStart; 527private static RoutedUICommand _SelectToLineEnd; 528private static RoutedUICommand _SelectToColumnStart; 529private static RoutedUICommand _SelectToColumnEnd; 530private static RoutedUICommand _SelectToWindowTop; 531private static RoutedUICommand _SelectToWindowBottom; 532private static RoutedUICommand _SelectToDocumentStart; 533private static RoutedUICommand _SelectToDocumentEnd; 537private static RoutedUICommand _CopyFormat; 538private static RoutedUICommand _PasteFormat; 539private static RoutedUICommand _ResetFormat; 540private static RoutedUICommand _ToggleBold; 541private static RoutedUICommand _ToggleItalic; 542private static RoutedUICommand _ToggleUnderline; 543private static RoutedUICommand _ToggleSubscript; 544private static RoutedUICommand _ToggleSuperscript; 545private static RoutedUICommand _IncreaseFontSize; 546private static RoutedUICommand _DecreaseFontSize; 547private static RoutedUICommand _ApplyFontSize; 548private static RoutedUICommand _ApplyFontFamily; 549private static RoutedUICommand _ApplyForeground; 550private static RoutedUICommand _ApplyBackground; 551private static RoutedUICommand _ToggleSpellCheck; 552private static RoutedUICommand _ApplyInlineFlowDirectionRTL; 553private static RoutedUICommand _ApplyInlineFlowDirectionLTR; 557private static RoutedUICommand _AlignLeft; 558private static RoutedUICommand _AlignCenter; 559private static RoutedUICommand _AlignRight; 560private static RoutedUICommand _AlignJustify; 561private static RoutedUICommand _ApplySingleSpace; 562private static RoutedUICommand _ApplyOneAndAHalfSpace; 563private static RoutedUICommand _ApplyDoubleSpace; 564private static RoutedUICommand _IncreaseIndentation; 565private static RoutedUICommand _DecreaseIndentation; 566private static RoutedUICommand _ApplyParagraphFlowDirectionRTL; 567private static RoutedUICommand _ApplyParagraphFlowDirectionLTR; 571private static RoutedUICommand _RemoveListMarkers; 572private static RoutedUICommand _ToggleBullets; 573private static RoutedUICommand _ToggleNumbering; 577private static RoutedUICommand _InsertTable; 578private static RoutedUICommand _InsertRows; 579private static RoutedUICommand _InsertColumns; 580private static RoutedUICommand _DeleteRows; 581private static RoutedUICommand _DeleteColumns; 582private static RoutedUICommand _MergeCells; 583private static RoutedUICommand _SplitCell; 587private static RoutedUICommand _CorrectSpellingError; 588private static RoutedUICommand _IgnoreSpellingError;
System\Windows\Input\Command\CommandConverter.cs (2)
243private static RoutedUICommand GetKnownCommand( string localName, Type ownerType ) 245RoutedUICommand knownCommand = null;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
635case 539: t = () => typeof(RoutedUICommand); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8605typeof(System.Windows.Input.RoutedUICommand),
System\Windows\Markup\KnownTypes.cs (1)
6093case KnownElements.RoutedUICommand: t = typeof(System.Windows.Input.RoutedUICommand); break;
PresentationUI (20)
MS\Internal\Documents\Application\CommandEnforcer.cs (3)
28public PolicyBinding(RoutedUICommand command, RightsManagementPolicy policy) 39public RoutedUICommand Command 52private RoutedUICommand _command;
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (17)
84public static RoutedUICommand FocusToolBar 95public static RoutedUICommand Sign 106public static RoutedUICommand RequestSigners 117public static RoutedUICommand ShowSignatureSummary 128public static RoutedUICommand ShowRMPermissions 139public static RoutedUICommand ShowRMCredentialManager 150public static RoutedUICommand ShowRMPublishingUI 2110private static RoutedUICommand CreateAndBindCommand(string name, string header, InputGestureCollection gestures, 2114RoutedUICommand command = new RoutedUICommand(header, name, typeof(DocumentApplicationDocumentViewer), gestures); 2127private static void BindCommand(RoutedUICommand command, ExecutedRoutedEventHandler executeHandler, 2207private static RoutedUICommand _focusToolBarCommand; 2208private static RoutedUICommand _signCommand; 2209private static RoutedUICommand _requestSignersCommand; 2210private static RoutedUICommand _showSignatureSummaryCommand; 2211private static RoutedUICommand _showRMPermissionsCommand; 2212private static RoutedUICommand _showRMCredentialManagerCommand; 2213private static RoutedUICommand _showRMPublishingUICommand;
System.Windows.Controls.Ribbon (8)
Microsoft\Windows\Automation\Peers\RibbonTextBoxAutomationPeer.cs (2)
110RoutedUICommand 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; }