winforms 如何在RichTextBox中从鼠标点击点获取插入符号位置?

6ljaweal  于 2023-05-18  发布在  其他
关注(0)|答案(1)|浏览(213)

我需要将RichTextBox文本的插入符号位置更改为鼠标点击位置。我在WPFRichTextBox中使用内置的方法GetPositionFromPoint
但是我在WinFormsRichTextBox中找不到这样的方法。
有人能让我知道,有没有可能使它在Windows窗体中工作?

fcg9iug3

fcg9iug31#

单击RichTextBox控件的文本内容时,插入符号位置将移动到控件内鼠标指针的位置。此位置现在是当前插入点。
插入符号新位置可以通过两种方式检索:
检查SelectionStart属性:

int caretPosition = richTextBox1.SelectionStart;

使用MouseEventArgs ' e.Location返回的鼠标指针位置。
在这种情况下,可以使用GetCharIndexFromPosition方法:

int caretPosition = richTextBox1.GetCharIndexFromPosition(e.Location);

如果比较SelectionStartGetCharIndexFromPosition返回的值,可以验证这些值是否相等。
如果您希望插入符号在RichTextBox的边界内移动时跟随鼠标指针,则可以订阅MouseMove事件并使用此方法将鼠标指针位置转换为字符索引位置(您需要首先在RichTextBox控件内单击):

private void richTextBox1_MouseMove(object sender, MouseEventArgs e)
{
    RichTextBox rtb = sender as RichTextBox;
    rtb.SelectionStart = rtb.GetCharIndexFromPosition(e.Location);
}

Line位置由GetLineFromCharIndex方法返回:
(The Lines数组指的是换行分隔的文本部分(\nRichTextBox中)

int CaretPositionLine = richTextBox1.GetLineFromCharIndex(caretPosition);

相关问题