[问题] Firemonkey 控件继承后无法显示(空白)
Posted 龟山Aone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[问题] Firemonkey 控件继承后无法显示(空白)相关的知识,希望对你有一定的参考价值。
提问:如下安装后的 TMyPanel 能在设计期时正常显示,但 TMyPanel2 在设计期时是白板,不能正常看到,为什么?
TMyPanel = class(TPanel) end; TMyCustomPanel = class(TPanel) TMyPanel2 = class(TMyCustomPanel) end; RegisterComponent(‘Test‘, [TMyPanel, TMyPanel2]);
可能:是隔代无法继承 Style 造成的,改成如下就可以了:
TMyPanel = class(TPanel) end; TMyCustomPanel = class(TPanel) end; TMyPanel2 = class(TMyCustomPanel) protected function GetDefaultStyleLookupName: string; override; end; function TMyPanel2.GetDefaultStyleLookupName: string; begin Result := ‘panelstyle‘; end;
ps. 这里 QQ 群里的问题,记录一下。
以上是关于[问题] Firemonkey 控件继承后无法显示(空白)的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Firemonkey 的 TTabItem 中插入另一个控件