我想在每次悬停图形对象时显示工具提示。我使用位图在图片框中绘制图形对象。
答案 0 :(得分:0)
Picturebox在visual studio中没有工具提示功能,而不是我所知道的。这是一个解决方法。
imports System.Drawing
Dim varname as new ToolTip()
varname.SetToolTip(PictureBox1, "Tooltip data here")
如果您已使用WithEvents添加了该框,请使用以下代码
Private tool As ToolTip = New ToolTip()
Sub OnPictureMouseHover(ByVal sender As Object, ByVal e As EventArgs) Handles PictureBox1.MouseHover
tool.Show("Tooltip", Me)
End Sub
Sub OnPictureMouseLeave(ByVal sender As Object, ByVal e As EventArgs) Handles PictureBox1.MouseLeave
tool.Hide()
End Sub