当鼠标悬停在自定义富编辑控件中的链接上时,我想显示工具提示。考虑以下文本:
我们都在晚上睡觉。
就我而言,睡眠这个词是一个链接。
当用户在链接下移动鼠标时,在本例中为“睡眠”,我想显示链接的工具提示。
我想到了以下内容,但它们不起作用
1) 捕获 OnMouseHover
if(this.Cursor == Cursors.Hand)
tooltip.Show(textbox,"My tooltip");
else
tooltip.Hide(textbox);
但这行不通。
更新
提到的链接不是URL,即这些是自定义链接,所以 Regex 在这里不会有太大帮助,它可以是任何文本。用户可以选择创建一个链接。
虽然我没有尝试过GetPosition
方法,但我认为它在设计和维护方面不会那么优雅。
让我说我在我的richedit框中有以下行
我们晚上睡觉。但蝙蝠保持清醒。蟑螂在晚上变得活跃。
在上面的句子中,当鼠标悬停在它们上方时,我想要三个不同的工具提示。
sleep -> Human beings
awake -> Nightwatchman here
active -> My day begins
我被困OnMouseMove
如下:
使用消息框
OnMouseMove( )
{
// check to see if the cursor is over a link
// though this is not the correct approach, I am worried why does not a tooltip show up
if(this.Cursor.current == Cursors.hand )
{
Messagebox.show("you are under a link");
}
}
不工作 - 使用工具提示 - 工具提示不显示
OnMouseMove( MouseventArgs e )
{
if(cursor.current == cursors.hand )
{
tooltip.show(richeditbox,e.x,e.y,1000);
}
}