码迷,mamicode.com
首页 > 其他好文 > 详细

inno setup静默安装

时间:2019-11-12 20:35:20      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:func   procedure   roc   end   initial   The   res   cti   client   

[Code]
//关键代码静默安装
procedure InitializeWizard();
begin
  //不显示边框,这样就能达到不会闪两下了
  WizardForm.BorderStyle:=bsNone;
end;
procedure CurPageChanged(CurPageID: Integer);
begin
 //因为安装过程界面隐藏不了,所以设置窗口宽高为0
  WizardForm.ClientWidth := ScaleX(0)
  WizardForm.ClientHeight := ScaleY(0)
if CurPageID = wpWelcome then
WizardForm.NextButton.OnClick(WizardForm);
if CurPageID >= wpInstalling then
    WizardForm.Visible := False
  else
    WizardForm.Visible := True;
 // WizardForm.NextButton.OnClick(WizardForm);
end;
 
function ShouldSkipPage(PageID: Integer): Boolean;
begin
result := true;
end;
 
 
 
 

inno setup静默安装

标签:func   procedure   roc   end   initial   The   res   cti   client   

原文地址:https://www.cnblogs.com/yuzhould/p/11844566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!