Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 c# 中的 notifyicon 鼠标悬停时显示文本。由于 ShowBalloonTip 显示关于超时,我如何在 Notify Icon 的鼠标悬停时显示文本?
NotifyIcon 类的 Text 属性是你需要的
当您将鼠标悬停在图标上时,.Text 将呈现为工具提示。
public string Text { get; set; }