我使用VSTUDIO2012,我的問題似乎很簡單,但它太難爲我了,如何在點擊標籤時創建並顯示infotip?
編輯:這是一個「Windows窗體應用程序」
我有一個標籤,當我點擊標籤我想要在「infotip」或「tooltip」或「ballontip」中顯示一些信息,我想顯示一條消息,如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 [email protected]")
End Sub
Private Sub ToolTip1_Popup(sender As Object, e As PopupEventArgs) Handles ToolTip1.Popup
ToolTip1.Show("Tooltip text goes here", Label1)
End Sub
這是一個winforms應用程序或WPF應用程序? – War10ck
嗨,對不起,我是一個新手程序員,它的默認窗體,Windows窗體應用程序窗體(winform我想) – ElektroStudios
沒問題,你都很好。讓我使用visual studio 2010,但佈局應該是相同的。我會盡快發佈答案。 – War10ck