Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户将鼠标悬停在 Nevron 图表的特定图表元素上时,我试图找到一种显示工具提示的方法。
据我所知,NDiagramElement 本身不支持工具提示。我尝试创建一个标签并将其显示在鼠标位置并使用 System.Windows.Forms.ToolTip 类(给它包含图表作为工具提示锚点的表单或控件,因为 Nevron 的类不是基于控制)。到目前为止没有任何效果。
有人有想法么?谢谢。
PS我正在使用.NET 2.0。
这可以解决问题:
someShape.StyleSheet.Style.InteractivityStyle = new NInteractivityStyle("Tooltip text");