如何在 WPF RichTextBox 中强制插入模式
有谁知道如何控制WPF RichTextBox的插入模式。 我想强制 RichTextBox 始终处于覆盖模式而不是插入模式。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,似乎没有记录的方法可以做到这一点。 我知道的唯一方法是使用反射,如下所示,但此技术访问 RichTextBox 的内部工作。 它可以在当前版本的 WPF 中运行,但不能保证它将继续运行,因此使用它的风险由您自行承担。
上述需要在构造函数之后发生。
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.