码迷,mamicode.com
首页 > 其他好文 > 详细

[问题] Firemonkey 控件继承后无法显示(空白)

时间:2016-12-25 11:42:38      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:rem   protected   为什么   defaults   test   efault   com   cte   over   

提问:如下安装后的 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 控件继承后无法显示(空白)

标签:rem   protected   为什么   defaults   test   efault   com   cte   over   

原文地址:http://www.cnblogs.com/onechen/p/6219144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!