使用Inno Setup中格式化(部分粗体)的文本制作安装程序?

时间:2012-01-30 18:27:58

标签: delphi scripting inno-setup pascal

有人看过GOG.com游戏安装程序吗?如何在单个标题中创建包含路径和需要大小的欢迎文本字符串?部分是粗体的。

以下是修改安装路径后如何更改String换行符的示例

http://i.stack.imgur.com/VKbtE.jpg

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:17)

您可以使用TRichEditViewer设置RFTText属性,将UseRichEdit设置为True。

试试这个样本

procedure CreateCustomPages;
var
  Page                 : TWizardPage;
  rtfHelpText          : TRichEditViewer;
  s: string;
begin
 Page := CreateCustomPage(wpWelcome, 'Custom wizard page controls', 'Bold Demo');
 Page.Surface.Align:=alCLient;

 s:='{\rtf1\ansi\ansicpg1252\deff0\deflang13322{\fonttbl{\f0\fnil\fcharset0 Tahoma;}}'+
    '\viewkind4\uc1\pard\f0\fs16 This is a normal text, \b and this is a bold text\b0\par}';

 rtfHelpText := TRichEditViewer.Create(Page);
 rtfHelpText.Parent := Page.Surface;
 rtfHelpText.Left :=    0;
 rtfHelpText.Top := 0;
 rtfHelpText.Width := Page.SurfaceWidth;
 rtfHelpText.Height := Page.SurfaceHeight;
 rtfHelpText.Scrollbars := ssVertical;
 rtfHelpText.ReadOnly := True;
 rtfHelpText.UseRichEdit := True;
 rtfHelpText.RTFText := s;
end;

procedure InitializeWizard();
begin
  CreateCustomPages();
end;

enter image description here