如何更改notifyIcon组件的背景颜色和文本

时间:2015-08-14 20:20:02

标签: c# notifyicon

如何更改notifyIcon组件的背景颜色和文本?

enter image description here

1 个答案:

答案 0 :(得分:0)

对于文本,您需要BalloonTipText属性:

var notifyIcon = new NotifyIcon();
notifyIcon.BalloonTipText = "Your string here";

但是,无法使用此类型设置气球的背景颜色。如果你真的必须改变它,你可以使用Win32API中的Shell_NotifyIcon函数,如here所述。