后台c#上有新消息弹出窗口

发布于 2024-10-14 02:55:45 字数 103 浏览 2 评论 0原文

我需要一个弹出窗口,该窗口将显示在屏幕右下角。 当我的软件收到新消息时,它应该会弹出。 我该如何编程?创建新表单并使用它?如何将其编程为在后台运行而不中断其他用户操作?

谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请远离我 2024-10-21 02:55:45

查看 NotifyIcon.ShowBalloonTip这是一个示例。

基本上,您添加一个 NotifiyIcon 到您的表单,然后执行类似的操作(来自 MSDN 页面< /a> 上面链接):

void Form1_DoubleClick(object sender, EventArgs e)
{
    notifyIcon1.Visible = true;
    notifyIcon1.ShowBalloonTip(20000, "Information", "This is the text",
        ToolTipIcon.Info );
}

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):

void Form1_DoubleClick(object sender, EventArgs e)
{
    notifyIcon1.Visible = true;
    notifyIcon1.ShowBalloonTip(20000, "Information", "This is the text",
        ToolTipIcon.Info );
}
黄昏下泛黄的笔记 2024-10-21 02:55:45

您可以使用 NotifyIcon 类及其方法<代码>ShowBalloonTip(Int32, String, String, ToolTipIcon)

You can use NotifyIcon class and its method ShowBalloonTip(Int32, String, String, ToolTipIcon)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文