如何显示长度超过 128 个字符的系统托盘工具提示
根据 MSDN,NOTIFYICONDATA::szTip
仅支持 128 个字符的文本。如何解决此限制并显示更长的工具提示文本?
According to MSDN, NOTIFYICONDATA::szTip
only supports 128 characters of text. How do I workaround this limitation and show longer tooltip text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果 MSDN 中记录了限制,那么您就不能提供比该长度更长的字符串。您是否想显示类似于气球提示的内容?
请记住,这是一个工具提示,旨在提供有关事件的简要信息。如果您需要更长的内容,那么您将必须在托盘区域中绘制自己的自定义窗口。
也许看看这个: http://www.codeproject.com/KB/shell/ LiviuBirjegaCode.aspx
Well, if it's a documented limit in the MSDN, then you can't supply a string that is longer than that. Are you trying to display something similar to a balloon tip?
Keep in mind that this is a tooltip, and such designed to give brief information about an event. If you need something longer, then you will have to draw your own custom window in the tray area.
Maybe take a look at this: http://www.codeproject.com/KB/shell/LiviuBirjegaCode.aspx