标签: c# notifyicon
如何更改notifyIcon组件的背景颜色和文本?
答案 0 :(得分:0)
对于文本,您需要BalloonTipText属性:
var notifyIcon = new NotifyIcon(); notifyIcon.BalloonTipText = "Your string here";
但是,无法使用此类型设置气球的背景颜色。如果你真的必须改变它,你可以使用Win32API中的Shell_NotifyIcon函数,如here所述。