我正在使用 VSTUDIO2012,我的问题看起来很简单,但对我来说太难了,
编辑:这是一个“Windows 窗体应用程序”
我有一个标签,当我单击标签时,我想在“信息提示”或“工具提示”或“气球提示”中显示一些信息,我想显示一条消息,例如 5-10 秒...
有人可以指导我如何制作这个吗?或网络上的参考?
EDIT2:我试过这个:
Private Sub Label1_Click(sender As Object, e As EventArgs) Handles Label1.Click
'MessageBox.Show("Use the 'Ctrl+C' hotkey to copy the" & vbNewLine & "mouse coordinates into the clipboard.", "Mouse XY by Elektro H@cker")
End Sub
Private Sub ToolTip1_Popup(sender As Object, e As PopupEventArgs) Handles ToolTip1.Popup
ToolTip1.Show("Tooltip text goes here", Label1)
End Sub