Delphi XE7 中 DesignIntf,DesignEditors DockForm问题解决

DockForm

[dcc32 Fatal Error] ToolsAPI.pas(18): F2613 Unit 'DockForm' not found.

这样解决了XE7。

http://docwiki.embarcadero.com/Libraries/XE7/en/DesignIntf

DesignEditors

Defines the interfaces and classes used by the property editors in the IDE.

To use the  DesignEditors and DesignIntf units with Delphi, you need to add the following compiler option on the Compiling page in Project Options:

-LUDesignIDE

With C++, you need to ensure that $(BDS)includewindowsvcldesign is added to the INCLUDE path, and that designide.bpi is added to the Requires of your package.

For more information, see the comments in the source; the DesignEditors.pas source file is liberally commented.

原文地址:https://www.cnblogs.com/khzide/p/4750693.html