如何更改默认按钮的宽度(下一步、取消等)。我想将按钮的宽度增加 20 像素,听起来很简单,但是..
假设我有这样的事情:
# declare name of installer file
outfile "hello world.exe"
# open section
section
# create a popup box, with an OK button and some text
messageBox MB_OK "Now We are Creating Hello_world.txt at Desktop!"
/* open an output file called "Hello_world.txt",
on the desktop in write mode. This file does not need to exist
before script is compiled and run */
fileOpen $0 "$DESKTOP\Hello_world.txt" w
# write the string "hello world!" to the output file
fileWrite $0 "hello world!"
# close the file
fileClose $0
# Show Success message.
messageBox MB_OK "Hello_world.txt has been created successfully at Desktop!"
# end the section
sectionEnd
我该怎么做呢?