标签: c# notifyicon
如何在c#的mouseicon上显示文本。由于ShowBalloonTip显示超时,如何在鼠标悬停时显示通知图标上的文字?
答案 0 :(得分:15)
Text Property of NotifyIcon class is what you need
。当您将鼠标悬停在图标上时,文本将呈现为工具提示。
public string Text { get; set; }