vb.net - 禁用富文本框中的单词选择

vb.net - Disable word selection in a richtextbox

我需要一种方法来禁用 RichTextBox 中的全字 selection。

这是我的问题:我想创建一个可以在文本中包含图像的文本编辑应用程序。但是,我注意到当 select 在 RichTextBox 中输入文本时,您只能 select 一个完整的单词。

注意:以防万一它是基于系统的,我在 Windows10

上使用 VS 2015

根据 MSDN,RichTextBox 中的 AutoWordSelection 似乎存在错误。要修复它,只需制作一个计时器,将启用设置为真,并在事件中编写以下代码:

RichTextBox1.AutoWordSelection = True
RichTextBox1.AutoWordSelection = False

已接受的答案对我不起作用,但以下答案对我有用:

C# RichTextBox selection problem

这里是 Telerik's 尝试将 C# 转换为 VB.NET:

Protected Overrides Sub OnHandleCreated(e As EventArgs)
    MyBase.OnHandleCreated(e)
    If Not MyBase.AutoWordSelection Then
        MyBase.AutoWordSelection = True
        MyBase.AutoWordSelection = False
    End If
End Sub