显示Windows的About框

; ShellAbout.nsi
;
;--------------------------------
; The name of the installer
Caption "NSIS ShellAbout API 演示"
; The file to write
OutFile "ShellAbout.exe"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
; Pages
Page components ShellAbout
;--------------------------------
var tCaption
var tUser
var hIcon
Function ShellAbout
StrCpy $tCaption "NSIS ShellAbout API 演示"
StrCpy $tUser "yhxs3344.net"
StrCpy $hIcon 0
;参数: 对话框父窗口句柄($HWNDPARENT) 窗口标题($tCaption) 作者($tUser) 图标句柄($hIcon)
System::Call `Shell32::ShellAboutA(i,t,t,i) i ($HWNDPARENT,"$tCaption","$tUser",$hIcon) .s`
FunctionEnd
Section -
SectionEnd
© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容