我想使用c#更改鼠标悬停时的通知图标文字 e.g
NotifyIcon notifyicon;
notifyicon.Icon = (Icon)resManager.GetObject("test");
notifyicon.Visible = true;
if(a==b)
{
notifyicon.Text = "Both are equal";
}
else
{
notifyicon.Text = "Not equal";
}
有可能???