从托盘栏显示通知的不同方式
除了气球提示之外,还有哪些其他方法可以显示托盘栏中的通知?
我想要实现的是类似Skype通知的功能,所以我还想具有堆积通知的功能(在Skype中我们有John在线,Marc在线,Jim同时在线)。我怎样才能实现这个目标?
此外,比气球提示更好看的东西会更好。
What are the alternatives to balloon hints to show notifications from the tray bar?
What I want to achieve is something like Skype notifications, so I want to also have the feature of piling up notifications (in Skype we have John is online, Marc is online and Jim is online at the same time). How can I achieve this?
Moreover, something nicer looking than the balloon hint would be better.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
TJvDesktopAlert
组件,该组件是JVCL 的一部分
库,您可以在此目录中找到示例 jvcl\examples\JvDesktopAlert\JvDesktopAlertDemo.dpr(来源:agnisoft.com)
you can use the
TJvDesktopAlert
component which is part of theJVCL
library, you can find an example in this directory jvcl\examples\JvDesktopAlert\JvDesktopAlertDemo.dpr(source: agnisoft.com)
您可以创建自己的表单并将其作为托盘通知弹出在相应的位置。
You can just create your own form and popup it as the tray notification at corresponding position.
您可以创建自定义表单并将其显示在系统通知区域旁边。 LMD ElPack 包含的 TElTrayInfo 组件正是用于此目的。
You can create custom form and show it next to the system notification area. LMD ElPack includes TElTrayInfo component for exactly this purpose.
看看 Growl: http://www.growlforwindows.com/gfw/
这是一个很好的寻找用户界面
Have a look at Growl: http://www.growlforwindows.com/gfw/
It is a good looking UI