后台c#上有新消息弹出窗口
我需要一个弹出窗口,该窗口将显示在屏幕右下角。 当我的软件收到新消息时,它应该会弹出。 我该如何编程?创建新表单并使用它?如何将其编程为在后台运行而不中断其他用户操作?
谢谢。
I need a pop up window that will be displayed on the bottom right side of the screen.
It's supposed to pop when a new message is received within my software.
How can i program it? Create new form and use it? How can I program it to run on background without interrupting other user actions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看
NotifyIcon.ShowBalloonTip
。 这是一个示例。基本上,您添加一个
NotifiyIcon
到您的表单,然后执行类似的操作(来自 MSDN 页面< /a> 上面链接):Check out
NotifyIcon.ShowBalloonTip
. And here's an example.Basically, you add a
NotifiyIcon
to your form, and do something like this (from the MSDN page linked above):您可以使用 NotifyIcon 类及其方法<代码>ShowBalloonTip(Int32, String, String, ToolTipIcon)
You can use NotifyIcon class and its method
ShowBalloonTip(Int32, String, String, ToolTipIcon)