gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 14:48:55 28 4
gpt4 key购买 nike

我正在将一个大型项目转换为 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;

最佳答案

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

但是这是一个合理的工作量,我希望您真正想做的就是安排该控件使用与 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 的样式,而不是根据控件的类名查找样式。

关于delphi - 从 TButton 继承的自定义按钮不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25864696/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com