显示文本通知图标鼠标悬停

时间:2012-06-27 11:18:28

标签: c# notifyicon

如何在c#的mouseicon上显示文本。由于ShowBalloonTip显示超时,如何在鼠标悬停时显示通知图标上的文字?

1 个答案:

答案 0 :(得分:15)

Text Property of NotifyIcon class is what you need

。当您将鼠标悬停在图标上时,文本将呈现为工具提示。

public string Text { get; set; }