从TButton继承的自定义按钮不显示

时间:2014-09-16 09:04:59

标签: delphi firemonkey delphi-xe6

我正在将一个大型项目转换为Firemonkey,我们有一些自定义按钮,这些按钮不会显示在表单上。我已将问题分离到一个非常简单的项目中:

使用下面的代码,在移动设备和桌面设备上(使用Delphi XE6中的默认新应用程序),创建tTestButton1可以正常工作,但tTestButton2不会在窗体上显示。怎么可能?

type
tTestButton1 = class(TButton);
tTestButton2 = class(tTestButton1);

tMainForm = class(TForm)
private
  fTestButton: TButton;
public
  constructor Create(aOwner: TComponent); override;
end;

constructor tMainForm .Create(aOwner: TComponent);
begin
  inherited;

//  fTestButton := tTestButton1.Create(Self); // this works fine (used instead of next line)
  fTestButton := tTestButton2.Create(Self);  //this button does not show up
  fTestButton.Text := 'Test';
  fTestButton.Parent := Self;
  fTestButton.Visible := True;
  fTestButton.Position.X := 20;
  fTestButton.Position.Y := 20;
end;

1 个答案:

答案 0 :(得分:4)

问题是控件没有为其注册的样式。所以自然的解决方案就是让你这样做。

但这是一项合理的工作量,我希望您真正想做的就是安排控件使用与TButton相同的样式。像这样实现:

type
  TButtonBase = class(TButton)
  protected
    function GetDefaultStyleLookupName: string; override;
  end;

function TButtonBase.GetDefaultStyleLookupName: string;
begin
  Result := 'Buttonstyle';
end;

现在从TButtonBase派生您的课程。

type
  tTestButton1 = class(TButtonBase);
  tTestButton2 = class(tTestButton1);

不是根据控件的类名查找样式,而是从TButtonBase派生的类将使用名为Buttonstyle的样式。