2

您曾经能够从调色板中获取安装了 Delphi 组件的包。不过,该功能似乎不在最新版本中。如何在 D2007 或 D2009 下找到组件属于哪个包?

4

2 回答 2

4

I don't know of any way to do this through the Delphi IDE. However, you can do a search in your registry for the component name. For instance, to find the package that TBitBtn belongs to, open RegEdit and do a search (on Keys only) for TBitBtn. The entry for TBitBtn has a value called "Package Name". This is the internal name of the package, which is probably still not quite what you are looking for. Copy the "Package Name" value (dclstd100.bpl in my case), and do a search from the top (on Values this time) for that value. Once this entry is found you will see the "friendly" package name in the "Data" column.

于 2008-11-04T21:35:32.183 回答
3

在组件|安装包下,当您选择一个包时,组件按钮会显示该包中安装了哪些组件。

于 2008-11-04T21:47:58.507 回答