11

如何在 c# 中的 notifyicon 鼠标悬停时显示文本。由于 ShowBalloonTip 显示关于超时,我如何在 Notify Icon 的鼠标悬停时显示文本?

4

1 回答 1

19

NotifyIcon 类的 Text 属性是你需要的

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

public string Text { get; set; }
于 2012-06-27T11:23:45.483 回答