如何在 WPF RichTextBox 中强制插入模式

发布于 2024-07-21 06:23:11 字数 71 浏览 4 评论 0原文

有谁知道如何控制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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟酉 2024-07-28 06:23:11

不幸的是,似乎没有记录的方法可以做到这一点。 我知道的唯一方法是使用反射,如下所示,但此技术访问 RichTextBox 的内部工作。 它可以在当前版本的 WPF 中运行,但不能保证它将继续运行,因此使用它的风险由您自行承担。

PropertyInfo textEditorPropertyInfo = typeof(RichTextBox).GetProperty("TextEditor", BindingFlags.NonPublic | BindingFlags.Instance);

        if (textEditorPropertyInfo == null)
            throw new NotSupportedException("SetOverwriteable not support on this platform");

        object textEditor = textEditorPropertyInfo.GetValue(this, null);
        PropertyInfo overtypeModePropertyInfo = textEditor.GetType().GetProperty("_OvertypeMode", BindingFlags.NonPublic | BindingFlags.Instance);

        if (overtypeModePropertyInfo == null)
            throw new NotSupportedException("SetOverwriteable not support on this platform");

        overtypeModePropertyInfo.SetValue(textEditor, true, null);

上述需要在构造函数之后发生。

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.

PropertyInfo textEditorPropertyInfo = typeof(RichTextBox).GetProperty("TextEditor", BindingFlags.NonPublic | BindingFlags.Instance);

        if (textEditorPropertyInfo == null)
            throw new NotSupportedException("SetOverwriteable not support on this platform");

        object textEditor = textEditorPropertyInfo.GetValue(this, null);
        PropertyInfo overtypeModePropertyInfo = textEditor.GetType().GetProperty("_OvertypeMode", BindingFlags.NonPublic | BindingFlags.Instance);

        if (overtypeModePropertyInfo == null)
            throw new NotSupportedException("SetOverwriteable not support on this platform");

        overtypeModePropertyInfo.SetValue(textEditor, true, null);

The above needs to happen after the constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文