Skip to content

Use the service substitution technique to change the actions performed when the built-in command is executed.

License

Notifications You must be signed in to change notification settings

DevExpress-Examples/winforms-richedit-replace-standard-command-with-custom-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rich Text Editor for WinForms - How to Replace Standard Command with Custom Command

This example illustrates the technique used to modify the functionality of existing RichEdit commands.

Implementation Details

The RichEditControl exposes the IRichEditCommandFactoryService interface that enables you to substitute the default command with a custom command.

  1. Create a command class, inherited from the command that you've decided to replace. Override its methods. The main functionality and command specifics is located in the Execute or the ExecuteCore method (the latter does not check for the command availability).

  2. Create a IRichEditCommandFactoryService implementation. Override the CreateCommand method to create an instance of a custom command class if an identifier of a certain command is passed as a parameter. So, instead of the default command, a custom command is used by the RichEditControl.

Finally we use this class to substitute the default RichEditControl's service.

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

About

Use the service substitution technique to change the actions performed when the built-in command is executed.

Topics

Resources

License

Stars

Watchers

Forks