0
A
回答
3
你可以在你的工具提示添加NEWLINE幾次像這樣的字符串,以便它不會一直穿過屏幕。
此代碼中的字符串長度爲434個字符。
:-)
只需運行該代碼嘗試它,請:>>
Imports System.Environment
Public Class Form1
Friend WithEvents myToolTip As New ToolTip
Private Sub Form1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.MouseHover
Dim someText As String = _
"Hello World!! Hi everyone!! Good day, good evening or goodnight, wherever you are in the world!! :-) :-D" & NewLine & _
"Hello World!! Hi everyone!! Good day, good evening or goodnight, wherever you are in the world!! :-) :-D" & NewLine & _
"Hello World!! Hi everyone!! Good day, good evening or goodnight, wherever you are in the world!! :-) :-D" & NewLine & _
"Hello World!! Hi everyone!! Good day, good evening or goodnight, wherever you are in the world!! :-) :-D"
Me.Text = someText.Length.ToString
myToolTip.Show(someText, Me, 5000)
End Sub
End Class
相關問題
- 1. 文本文件的長度
- 2. LI中的文本長度不明的文本中的文本
- 3. UIWebView文本長度
- 4. Datagridviewtextboxcolumn的長度和文本?
- 5. 長文本字段的最大長度
- 6. iPhone/iPad:UITextView最長的文本長度
- 7. 格式文本框WPF startselection和長度
- 8. 從CSS獲取文本Tooltip
- 9. C#WinForms - 智能文本框控件自動格式化基於文本框寬度的路徑長度
- 10. .NET WinForms本地化 - 如何根據文本長度控制位置
- 11. TextBlock中文本的字符長度
- 12. 見的值長度文本框中
- 13. 在php中的文本長度
- 14. 如何在文本的長度超過div的長度時使文本換行?
- 15. .NET Winforms垂直進度條文本
- 16. 着色文本中的WinForms
- 17. 驗證textangular文本長度
- 18. ROR SQLIite文本長度
- 19. C++「無限」長度文本
- 20. NSString文本像素長度
- 21. Iphone SDK UITextView文本長度
- 22. 限制EditText文本長度
- 23. PHP文本框長度
- 24. UIAlertView最大文本長度
- 25. 長度文本字段
- 26. document.createElement文本字段長度
- 27. 在文本字符長度
- 28. 垂直居中未知長度的文本里面的文本
- 29. 在PHP中檢查文本框長度
- 30. 如何修復winforms標籤的高度和寬度以接受可變長度文本
你是如何設置的提示?我複製並粘貼了3次消息,使其長度爲424字節(3行),所有3行顯示出來。我所做的只是在表單上放置文本框和工具欄,併爲文本框設置工具提示文本。 –