gpt4 book ai didi

c# - 确定鼠标悬停在 FastColoredTextBox 中的哪个词?

转载 作者:行者123 更新时间:2023-11-30 23:29:15 24 4
gpt4 key购买 nike

我正在使用 FastColoredTextBox project 并且无法弄清楚如何确定在触发 MouseHover 事件时鼠标悬停在哪个词(或字符位置)上(因此我可以显示有关该词用法的提示)。我找到了一个类似的 SO question , 虽然它只处理一个 RichTextBox ,它很方便地有 GetCharIndexFromPosition方法。

这可能是一个远景,但这里有没有人以这种方式使用 FastColoredTextBox 并且可以提供帮助?

否则,在 FastColoredTextBox 的源代码中四处窥探,我实际上无法告诉它用来绘制文本的控件。虽然我怀疑它的类声明

public partial class FastColoredTextBox : UserControl, ISupportInitialize

它可能会自己做。我认为我最好的选择是查看 RickTextBox 如何实现 GetCharIndexFromPosition 并尝试使用 FastColoredTextBox 重新创建它。

关于如何处理这个问题有什么建议吗?

编辑:在 FCTB 的源代码中,我从 MouseClick 事件开始,因为当用户单击文本时此事件会移动光标,因此它必须在某个时刻从鼠标下的字符。在事件处理程序中,我找到了方法 public Place PointToPlace(Point point)。看起来这可能就是我要找的。

如果这能让我找到解决方案,我会发布问题的答案。

最佳答案

PointToPlace 返回一个 Place,它告诉您行和字符索引(在行上)。
PointToPosition 返回绝对字符位置。
我测试了这个 (in vb.net...),它没有优化,但是第一次启动并且到目前为止工作:

Private Sub test_MouseMove(snd As Object, e As MouseEventArgs)
Dim p As Integer = Me.fctb.PointToPosition(Me.fctb.PointToClient(Windows.Forms.Cursor.Position))
' display letter
Dim ch As String = ""
If p < Me.fctb.Text.Length Then ch = Me.fctb.Text.ToCharArray()(p)
Me.Label1.Text = ch
' display word
Me.Label2.Text = GetWord(Me.fctb, p)
End Sub

Private Function GetWord(ct As FastColoredTextBoxNS.FastColoredTextBox, p As Integer) As String
Dim sb As New StringBuilder(ct.Text)
If sb.Length = 0 OrElse p = sb.Length Then Return ""
If Not Regex.IsMatch(sb.Chars(p).ToString, "^\w$") Then Return sb.Chars(p).ToString
Dim n1 As Integer = p
While n1 > 0 AndAlso Regex.IsMatch(sb.Chars(n1 - 1).ToString, "^\w$")
n1 -= 1
End While
Dim n2 As Integer = p
While n2 < sb.Length AndAlso Regex.IsMatch(sb.Chars(n2 + 1).ToString, "^\w$")
n2 += 1
End While

Return sb.ToString.Substring(n1, n2 - n1 + 1)
End Function

C#代码:

private void test_MouseMove(object snd, MouseEventArgs e) {
var p = fctb.PointToPosition(fctb.PointToClient(Windows.Forms.Cursor.Position));
// display letter
var ch = "";
if (p < fctb.Text.Length) {
ch = fctb.Text[p].ToString();
}
Label1.Text = ch;
// display word
Label2.Text = GetWord(fctb, p);
}

private string GetWord(FastColoredTextBoxNS.FastColoredTextBox ct, int p) {
var sb = new StringBuilder(ct.Text);
if (sb.Length == 0 || p == sb.Length) return "";
if (!Regex.IsMatch(sb[p].ToString(), @"^\w$")) return sb[p].ToString();
var n1 = p;
while (n1 > 0 && Regex.IsMatch(sb[n1 - 1].ToString(), @"^\w$")) {
n1 -= 1;
}
var n2 = p;
while (n2 < sb.Length && Regex.IsMatch(sb[n2 + 1].ToString(), @"^\w$")) {
n2 += 1;
}

return sb.ToString().Substring(n1, n2 - n1 + 1);
}

关于c# - 确定鼠标悬停在 FastColoredTextBox 中的哪个词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35588321/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com