在 RichTextBox 上显示工具提示
我在 WPF 窗口上有一个 RichTextBox。现在,我想当用户将鼠标移动到 RichTextBox 上时显示工具提示。 RichTextBox 的内容应取决于鼠标指针下方的文本。为此,我应该获取鼠标显示的字符的位置。
最好的问候,托马斯
I have a RichTextBox on a WPF Window. Now, I want to show a ToolTip when the user move the mouse over the RichTextBox. The Content of the RichTextBox should depend on the Text which is under the mouse pointer. For this I should get the position of the char, on which the mouse shows to.
Best Regards, Thomas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在以下示例中,工具提示将显示插入符号所在的下一个字符。
Xaml:
隐藏代码:
In the following example the tooltip will show the next character where the caret is.
Xaml:
Code-behind: