1 type derived from RoutedUICommand
PresentationCore (1)
Core\CSharp\System\Windows\Input\Command\SecureUICommand.cs (1)
33internal class SecureUICommand : RoutedUICommand, ISecureCommand
10 instantiations of RoutedUICommand
PresentationCore (3)
Core\CSharp\System\Windows\Input\Command\ComponentCommands.cs (1)
524RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand);
Core\CSharp\System\Windows\Input\Command\MediaCommands.cs (1)
463RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand);
Shared\MS\Internal\Commands\CommandLibraryHelper.cs (1)
38routedUICommand = new RoutedUICommand(name, ownerType, commandId);
PresentationFramework (7)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1341_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1342_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1343_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1344_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer));
src\Framework\System\Windows\Documents\EditingCommands.cs (1)
460command = new RoutedUICommand(commandPropertyName, commandPropertyName, typeof(EditingCommands));
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8603bamlType.DefaultConstructor = delegate() { return new System.Windows.Input.RoutedUICommand(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1515case KnownElements.RoutedUICommand: o = new System.Windows.Input.RoutedUICommand(); break;
320 references to RoutedUICommand
PresentationCore (108)
Core\CSharp\System\Windows\Input\Command\ApplicationCommands.cs (27)
48public static RoutedUICommand Cut 56public static RoutedUICommand Copy 64public static RoutedUICommand Paste 72public static RoutedUICommand Delete 80public static RoutedUICommand Undo 88public static RoutedUICommand Redo 96public static RoutedUICommand Find 104public static RoutedUICommand Replace 112public static RoutedUICommand SelectAll 120public static RoutedUICommand Help 128public static RoutedUICommand New 136public static RoutedUICommand Open 144public static RoutedUICommand Close 153public static RoutedUICommand Save 161public static RoutedUICommand SaveAs 169public static RoutedUICommand Print 177public static RoutedUICommand CancelPrint 185public static RoutedUICommand PrintPreview 193public static RoutedUICommand Properties 201public static RoutedUICommand ContextMenu 209public static RoutedUICommand Stop 217public static RoutedUICommand CorrectionList 230public static RoutedUICommand NotACommand 477private static RoutedUICommand _EnsureCommand(CommandId idCommand) 485RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 536private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
Core\CSharp\System\Windows\Input\Command\ComponentCommands.cs (31)
45public static RoutedUICommand ScrollPageUp 53public static RoutedUICommand ScrollPageDown 61public static RoutedUICommand ScrollPageLeft 69public static RoutedUICommand ScrollPageRight 77public static RoutedUICommand ScrollByLine 85public static RoutedUICommand MoveLeft 93public static RoutedUICommand MoveRight 101public static RoutedUICommand MoveUp 109public static RoutedUICommand MoveDown 117public static RoutedUICommand MoveToHome 125public static RoutedUICommand MoveToEnd 133public static RoutedUICommand MoveToPageUp 141public static RoutedUICommand MoveToPageDown 149public static RoutedUICommand ExtendSelectionUp 157public static RoutedUICommand ExtendSelectionDown 165public static RoutedUICommand ExtendSelectionLeft 173public static RoutedUICommand ExtendSelectionRight 181public static RoutedUICommand SelectToHome 189public static RoutedUICommand SelectToEnd 197public static RoutedUICommand SelectToPageUp 205public static RoutedUICommand SelectToPageDown 213public static RoutedUICommand MoveFocusUp 221public static RoutedUICommand MoveFocusDown 229public static RoutedUICommand MoveFocusForward 237public static RoutedUICommand MoveFocusBack 245public static RoutedUICommand MoveFocusPageUp 253public static RoutedUICommand MoveFocusPageDown 516private static RoutedUICommand _EnsureCommand(CommandId idCommand) 524RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(ComponentCommands), (byte)idCommand); 577private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
Core\CSharp\System\Windows\Input\Command\MediaCommands.cs (28)
45public static RoutedUICommand Play 53public static RoutedUICommand Pause 61public static RoutedUICommand Stop 69public static RoutedUICommand Record 77public static RoutedUICommand NextTrack 85public static RoutedUICommand PreviousTrack 93public static RoutedUICommand FastForward 101public static RoutedUICommand Rewind 109public static RoutedUICommand ChannelUp 117public static RoutedUICommand ChannelDown 125public static RoutedUICommand TogglePlayPause 133public static RoutedUICommand Select 141public static RoutedUICommand IncreaseVolume 149public static RoutedUICommand DecreaseVolume 156public static RoutedUICommand MuteVolume 163public static RoutedUICommand IncreaseTreble 170public static RoutedUICommand DecreaseTreble 177public static RoutedUICommand IncreaseBass 184public static RoutedUICommand DecreaseBass 191public static RoutedUICommand BoostBass 198public static RoutedUICommand IncreaseMicrophoneVolume 206public static RoutedUICommand DecreaseMicrophoneVolume 213public static RoutedUICommand MuteMicrophoneVolume 220public static RoutedUICommand ToggleMicrophoneOnOff 455private static RoutedUICommand _EnsureCommand(CommandId idCommand) 463RoutedUICommand newCommand = new RoutedUICommand(GetPropertyName(idCommand), typeof(MediaCommands), (byte)idCommand); 513private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
Core\CSharp\System\Windows\Input\Command\NavigationCommands.cs (20)
48public static RoutedUICommand BrowseBack 56public static RoutedUICommand BrowseForward 64public static RoutedUICommand BrowseHome 72public static RoutedUICommand BrowseStop 80public static RoutedUICommand Refresh 88public static RoutedUICommand Favorites 96public static RoutedUICommand Search 105public static RoutedUICommand IncreaseZoom 113public static RoutedUICommand DecreaseZoom 121public static RoutedUICommand Zoom 129public static RoutedUICommand NextPage 137public static RoutedUICommand PreviousPage 145public static RoutedUICommand FirstPage 153public static RoutedUICommand LastPage 161public static RoutedUICommand GoToPage 169public static RoutedUICommand NavigateJournal 343private static RoutedUICommand _EnsureCommand(CommandId idCommand) 351RoutedUICommand newCommand = CommandLibraryHelper.CreateUICommand( 395private static RoutedUICommand[] _internalCommands = new RoutedUICommand[(int)CommandId.Last];
Shared\MS\Internal\Commands\CommandLibraryHelper.cs (2)
28internal static RoutedUICommand CreateUICommand(string name, Type ownerType, byte commandId, PermissionSet ps) 30RoutedUICommand routedUICommand;
PresentationFramework (212)
src\Framework\MS\Internal\Documents\DocumentGridContextMenu.cs (2)
231private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command) 236private void SetMenuProperties(MenuItem menuItem, DocumentGrid dg, RoutedUICommand command, string header, string inputGestureText)
src\Framework\System\Windows\Annotations\AnnotationService.cs (6)
488public static readonly RoutedUICommand CreateHighlightCommand = new RoutedUICommand(SR.Get(SRID.CreateHighlight), "CreateHighlight", typeof(AnnotationService), null); 493public static readonly RoutedUICommand CreateTextStickyNoteCommand = new RoutedUICommand(SR.Get(SRID.CreateTextNote), "CreateTextStickyNote", typeof(AnnotationService), null); 498public static readonly RoutedUICommand CreateInkStickyNoteCommand = new RoutedUICommand(SR.Get(SRID.CreateInkNote), "CreateInkStickyNote", typeof(AnnotationService), null); 503public static readonly RoutedUICommand ClearHighlightsCommand = new RoutedUICommand(SR.Get(SRID.ClearHighlight), "ClearHighlights", typeof(AnnotationService), null); 508public static readonly RoutedUICommand DeleteStickyNotesCommand = new RoutedUICommand(SR.Get(SRID.DeleteNotes), "DeleteStickyNotes", typeof(AnnotationService), null); 513public static readonly RoutedUICommand DeleteAnnotationsCommand = new RoutedUICommand(SR.Get(SRID.DeleteAnnotations), "DeleteAnnotations", typeof(AnnotationService), null);
src\Framework\System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (4)
34RoutedUICommand uiCommand = ((ButtonBase)Owner).Command as RoutedUICommand; 79RoutedUICommand uiCommand = bb.Command as RoutedUICommand;
src\Framework\System\Windows\Controls\DataGrid.cs (2)
2076public static RoutedUICommand DeleteCommand 4329public static RoutedUICommand SelectAllCommand
src\Framework\System\Windows\Controls\DocumentViewer.cs (8)
327public static RoutedUICommand ViewThumbnailsCommand 340public static RoutedUICommand FitToWidthCommand 353public static RoutedUICommand FitToHeightCommand 366public static RoutedUICommand FitToMaxPagesAcrossCommand 2723private static RoutedUICommand _viewThumbnailsCommand; 2724private static RoutedUICommand _fitToWidthCommand; 2725private static RoutedUICommand _fitToHeightCommand; 2726private static RoutedUICommand _fitToMaxPagesAcrossCommand;
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (1)
656public static readonly RoutedUICommand SwitchViewingModeCommand = new RoutedUICommand(SR.Get(SRID.SwitchViewingMode), "SwitchViewingMode", typeof(FlowDocumentReader), null);
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
1837private static RoutedUICommand _commandLineDown; // Private LineDown command 1838private static RoutedUICommand _commandLineUp; // Private LineUp command 1839private static RoutedUICommand _commandLineLeft; // Private LineLeft command 1840private static RoutedUICommand _commandLineRight; // Private LineRight command
src\Framework\System\Windows\Controls\ListBox.cs (1)
1018private static RoutedUICommand SelectAllCommand =
src\Framework\System\Windows\Controls\MenuItem.cs (3)
348RoutedUICommand uiCommand; 353uiCommand = menuItem.Command as RoutedUICommand; 362uiCommand = value as RoutedUICommand;
src\Framework\System\Windows\Documents\EditingCommands.cs (176)
35public static RoutedUICommand ToggleInsert { get { return EnsureCommand(ref _ToggleInsert , "ToggleInsert" ); } } 43public static RoutedUICommand Delete { get { return EnsureCommand(ref _Delete , "Delete" ); } } 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 _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;
src\Framework\System\Windows\Input\Command\CommandConverter.cs (2)
253private static RoutedUICommand GetKnownCommand( string localName, Type ownerType ) 255RoutedUICommand knownCommand = null;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
631case 539: t = () => typeof(RoutedUICommand); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8601typeof(System.Windows.Input.RoutedUICommand),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6083case KnownElements.RoutedUICommand: t = typeof(System.Windows.Input.RoutedUICommand); break;