在 C# 中创建气球工具提示
我可以知道如何在用 C# 编码的应用程序中制作弹出气泡消息吗?
例如,当我启动我的应用程序时,它会弹出“欢迎使用 UbuntuSE 应用程序”。
是的,弹出窗口不是消息框弹出窗口,而是托盘菜单中的弹出窗口。
与此类似的内容:
PS, 如果我没记错的话,这就是所谓的气球工具提示。但我如何在我的代码中使用它。
Can i know how can i make a popup bubble message in my application coded in C#.
Like example, when i start my application, it'll popup saying "Welcome to UbuntuSE App".
And yea, The popup is not the message box popup, it's the popup in the traymenu.
Something similar to this:
PS,
If i'm not wrong, this is called Balloon Tooltips. But how can i use this in my codes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您使用的是 Winform,则具有 NotifyIcon 类。该对象有一个 ShowBalloonTip 方法,它将显示气球提示:
If you're using Winforms you have the NotifyIcon class. This object has a ShowBalloonTip method which will show a balloon tip:
您一定正在寻找
通知图标
控件另一个 CodeProject 示例
这是 MSDN 中的完整示例
you must be looking for the
Notify Icon
Controlanother CodeProject Example
here is a full example in MSDN
您可以使用
NotifyIcon
< /a> 属于 .NET 2.0 System.Windows.Forms 一部分的控件。检查:使用 NotifyIcon 控件
从 msdn,
You can use the
NotifyIcon
control that's part of .NET 2.0 System.Windows.Forms.Check : Using the NotifyIcon control
From the msdn,
NotifyIcon.BalloonTipIcon
NotifyIcon.BalloonTipIcon
您必须设置属性“图标”,否则它不会弹出
You have to set the property "icon" or it won't pop up
感谢您的信息!
做了这样的东西并且成功了!
Thanks for the info!
Made something like this and worked!