0

我有以下代码:

Function fnc_custom_page
GetDlgItem $0 $HWNDPARENT 2 ; Find cancel button
System::Call *(i,i,i,i)i.r1
System::Call 'USER32::GetWindowRect(ir0,ir1)'
System::Call *$1(i.r2,i.r3,i.r4,i.r5)
IntOp $5 $5 - $3 ;height
IntOp $4 $4 - $2 ;width
IntOp $4 $4 + 50
System::Call 'USER32::ScreenToClient(i$HWNDPARENT,ir1)'
System::Call *$1(i.r2,i.r3)
System::Free $1
IntOp $2 $2 - $4 ;x
IntOp $2 $2 - 8  ;x+padding
System::Call 'USER32::CreateWindowEx(i0,t "Button",t "Open tch",i${WS_CHILD}|${WS_VISIBLE}|${WS_TABSTOP},ir2,ir3,ir4,ir5,i $HWNDPARENT,i 0x666,i0,i0)i.r0'
SendMessage $HWNDPARENT ${WM_GETFONT} 0 0 $1
SendMessage $0 ${WM_SETFONT} $1 1
GetFunctionAddress $R0 fnc_tch
ButtonEvent::AddEventHandler 0x666 $R0

nsDialogs::Show
FunctionEnd

Function fnc_tch
Exec "$INSTDIT\tch.exe" 
Abort
FunctionEnd

我只有一页,我不想显示任何其他内容。如果我点击打开 tch,tch.exe 应该运行并且安装程序应该退出;但我无法让安装程序退出。请输入任何内容。

上述代码的来源:NSIS:如何在左下角添加自定义按钮并处理它的点击?

4

1 回答 1

2

大多数时候你可以使用Quit,但插件相关的回调函数不处理它(退出标志不是插件 API 的一部分)。

另一种方法是模拟单击关闭按钮:

!include WinMessages.nsh
SendMessage $HwndParent ${WM_CLOSE} 0 0
于 2013-02-28T23:54:59.063 回答