【问题标题】:Cannot Find the TTrayIcon Control in Delphi enterprise version 7Delphi企业版7中找不到TTrayIcon控件
【发布时间】:2025-12-13 23:00:03
【问题描述】:

我正在使用 Delphi 企业版 7,并希望将 TTrayIcon 控件拖放到表单中。我的问题是我找不到控件在控件集合中的位置。我还读到 TTrayIcon 属于单元 ExtCtrls。我将该单元添加到我的应用程序中,但是当我得到 TTrayIcon 未声明时。请你帮助我好吗?

【问题讨论】:

标签: delphi


【解决方案1】:

TTrayIcon 组件是在 Delphi 7 之后添加的。您的版本不包含它。您需要找到另一个组件,或直接调用 Shell_NotifyIcon。

【讨论】:

  • 我在现代 Delphi 中仍然调用 Shell_NotifyIcon。
  • 当然,这也是可能的,但我发现有一个组件可以更轻松地处理细节。 ;-)