如何在启动Inno Setup安装程序时显示消息框

时间:2016-11-02 10:47:30

标签: inno-setup messagebox

如何在启动Inno Setup中的安装程序时显示消息框信息?

像重装游戏的设置一样:

enter image description here

1 个答案:

答案 0 :(得分:4)

MsgBox function

调用InitializeSetup event function
function InitializeSetup(): Boolean;
begin
  MsgBox('Some message.', mbInformation, MB_OK);

  Result := True;
end;