- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Delphi 10 Seattle 中编译一个旧项目并收到以下错误消息
class TShellTreeView not found click cancel to ignore.....
TShellTreeView
是一个设计时组件,是 ShellCtrls
包的一部分,通常在 Samples
包中随 Delphi 一起提供,通常在:
C:\Users\Public\Documents\Embarcadero\Studio\xx.x\Samples\Object Pascal\VCL\
现在好像没有了。这个包裹去了哪里?
最佳答案
ShellControls
设计时包以及 Samples
包中的许多其他非常旧的项目已在 XE7+ 中删除。
如果你想要一个现成的设计时包,你仍然可以在 SourceForge repository here 中获得 XE6 附带的最后一个版本。 .
链接到此存储库的相关文档页面是 the XE6-specific page.特定于更高版本的 Delphi 的文档页面将链接到特定于这些版本的新 示例
存储库。要安装该包,请打开 vclshlctrls.dproj
文件,右键单击 Project Manager
中的 ShellControls.bpl
包并选择 安装
。
请记住,这现在是一个废弃的包 - 您可能需要进行更改才能在新版本中编译它。
但是,当前更新的 .pas
文件已集成到 VCL 源代码中。最好的选择可能是使用这些来制作您自己的设计时包。为此,您需要在以下位置找到来源:
Vcl.Shell.ShellConsts.pas
Vcl.Shell.ShellCtrls.pasin :
[ProgramFiles]\Embarcadero\Studio\17.0\source\vcl\
ShellControls.bpl
并添加两个源文件。编辑 Vcl.Shell.ShellCtrls.pas
的工作副本,将其添加为 interface
部分中的最后一项:
procedure Register;
并在 implementation
部分添加为第一项:
procedure Register;
begin
RegisterComponents('Shell Controls', [TShellListView]);
RegisterComponents('Shell Controls', [TShellTreeView]);
RegisterComponents('Shell Controls', [TShellChangeNotifier]);
end;
.bpl
并选择 -> Install
。接受 IDE 通知您的任何必需引用,您应该完成。关于delphi - TShellTreeView 在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34905926/
我正在尝试在 Delphi 10 Seattle 中编译一个旧项目并收到以下错误消息 class TShellTreeView not found click cancel to ignore....
我正在使用 MadExcept 来跟踪内存泄漏。如果我将 TShellTreeView 放在窗体上并运行应用程序,MadExcept 会报告内存泄漏。只是打开和关闭,没有别的。我在 XE8 下使用 X
我是一名优秀的程序员,十分优秀!