Does anyone know how to control the the insertion mode of a WPF RichTextBox. I want to force the RichTextBox to always be in overwrite mode rather than insert.
|
1
|
|
|
|
|
|
Unfortunately there doesn't seem to be a documented way of doing this. The only way I know is to use reflection, as below, but this technique accesses internal workings of the RichTextBox. It works in current versions of WPF but there is no guarantee that it will continue to work going forward, so use it at your own risk.
The above needs to happen after the constructor. |
|||
|
|
