获取鼠标指针下的文本
我对 C# 比较陌生。谁能告诉我如何在文本编辑器上显示工具提示...就像当我们将鼠标移到某个特定方法上时 VS 智能感知会扩展该方法一样???由于我正在开发添加功能,我希望工具提示显示在文档上(没有与之关联的表单)如何提前获取鼠标指针下的文本
i am relatively new to C#. can anybody please tell me how to display the tool tip on the text editor...just as VS intellisense expands a particular method when we move the mouse over it??? Since i am Developing an adding i want the tool tip to be displayed on document (there is no form associated with it) how to get the text under the mouse pointer thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我突然想到了 ToolTip 类。我确信您需要向它提供您想要显示的位置的 x,y 坐标。所以你只需要获取鼠标的 x,y 坐标,这应该很简单。
Off the top of my head look at the ToolTip class. I am sure you need to supply it with the x,y coordinates of where you want it to be displayed. So you just need to get the x,y coordinates of the mouse which should be simple enough.