qq342252004 发表于 2008-10-14 14:31:54

用AU3如何写这样的安装界面?

用AU3如何写这样的安装界面,会的朋友帮帮忙。

[ 本帖最后由 qq342252004 于 2008-10-16 08:23 编辑 ]

rolaka 发表于 2008-10-14 19:36:27

...............................不可以么?

78391493 发表于 2008-10-14 20:32:26

绝对可以,但是修改GUI标题我还不会。。。

qq342252004 发表于 2008-10-15 09:05:01

顶起,希望问题早日得到解决。

78391493 发表于 2008-10-15 12:27:03

粗略写了一下

liongodmien 发表于 2008-10-15 13:11:37

这个用AU3解决的话,用到GUICreate()带样式,GUIctrlsetdata(),GUICtrlCreatePic ,GUICtrlCreateProgress()带样式,DirGetSize()

liongodmien 发表于 2008-10-15 13:50:05

借用78391493兄弟的脚本改了下:

#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <ComboConstants.au3>

Opt('GUIcloseOnEsc', 0)
#Region ### START Koda GUI section ### Form=
$Form3 = GUICreate("安装", 413, 173, -1, -1, '')
$Label1 = GUICtrlCreateLabel("正在安装,请稍候...", 160, 88, 108, 17)
$Pic1 = GUICtrlCreatePic("xp.jpg", 0, 0, 413, 78, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Progress1 = GUICtrlCreateProgress(24, 104, 361, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
        $percent = @SEC
        WinSetTitle('', '正在安装,请稍候...', $percent & "% 安装" )
WEnd

qq342252004 发表于 2008-10-16 08:22:40

占用内存太高了

liongodmien 发表于 2008-10-16 12:34:45

原帖由 qq342252004 于 2008-10-16 08:22 发表 http://www.autoitx.com/images/common/back.gif
占用内存太高了
占用内存太高了???
页: [1]
查看完整版本: 用AU3如何写这样的安装界面?