gpt4 book ai didi

inno-setup - Inno Setup 如何更改 TInputFileWizardPage 上标签的字体颜色或样式

转载 作者:行者123 更新时间:2023-12-03 16:43:15 24 4
gpt4 key购买 nike

我有一个输入文件向导页面,我可以在其中选择一个文件并继续下一页。代码如下。

[Code]
var
PageFileSelect: TInputFileWizardPage;

function CreateFileSelectPage(): String;
begin
PageFileSelect := CreateInputFilePage(PagePreviousPage.ID,
'Select File',
'Select File Location',
'Additional comments...');

PageFileSelect.Add('Font color or style change required...',
'test.exe',
'*.exe');

PageFileSelect.Values[0] := FileLocation;
end;

有没有办法更改向导页面中 “需要更改字体颜色或样式...” 行的字体颜色或样式(粗体、斜体)?

提前致谢!

最佳答案

使用TInputFileWizardPage.PromptLabels访问代表标签的 TNewStaticText 实例:

PageFileSelect.PromptLabels[0].Font.Color := clRed;
PageFileSelect.PromptLabels[0].Font.Style := [fsBold, fsItalic];

enter image description here

关于inno-setup - Inno Setup 如何更改 TInputFileWizardPage 上标签的字体颜色或样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49448187/

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