|
发表于 2014-6-7 11:13:44
|
显示全部楼层
1、你会编程(语言不限),我们需要你!
3、你会制作PE或相关技术,我们需要你!
4、你会绿化并打包软件,我们需要你!
6、你会收集并制作封装相关的素材,我们需要你!
9、你会经常研究某项技术而废寝忘食,我们需要你!
这些项都涉及到一些,编程现在主要是用Autoit,但GUI是个短板;PE自己也做过,但都是在别人的PE上修改的;绿化用得多,自己做的少;素材总在收集;研究技术那绝对是废寝忘食。
下面是我仿XP做的一个关机程序,就为了方便,也为了纪念XP
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=image\power-off.ico
#AutoIt3Wrapper_Res_Language=2052
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section
$Form1 = GUICreate("关闭计算机", 311, 196, -1, 180, BitOR($WS_MINIMIZEBOX, $WS_POPUP, $WS_GROUP))
$Button1 = GUICtrlCreateButton("", 51, 77, 39, 39, $BS_ICON)
GUICtrlSetImage(-1, "image\U.ico", -1)
GUICtrlSetCursor(-1, 0)
$Button2 = GUICtrlCreateButton("", 137, 77, 39, 39, $BS_ICON)
GUICtrlSetImage(-1, "image\R.ico", -1)
GUICtrlSetCursor(-1, 0)
$Button3 = GUICtrlCreateButton("", 222, 77, 39, 39, $BS_ICON)
GUICtrlSetImage(-1, "image\L.ico", -1)
GUICtrlSetCursor(-1, 0)
$Button4 = GUICtrlCreateButton("取消", 241, 166, 60, 20)
GUICtrlSetFont(-1, 10, 400, 0, "宋体")
GUICtrlSetCursor(-1, 0)
$Pic1 = GUICtrlCreatePic("image\WinXP.jpg", 0, 0, 311, 196)
$Label1 = GUICtrlCreateLabel("Label1", 108, 11, 64, 23)
GUICtrlSetFont(-1, 14, 400, 0, "宋体")
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x003399)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$shutdown = 13
For $i = 900 To 1 Step -1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $Button1
$shutdown = 13
ExitLoop
Case $Button2
$shutdown = 6
ExitLoop
Case $Button3
$shutdown = 4
ExitLoop
Case $Button4
Exit
EndSwitch
$ii = $i / 30
If StringIsInt($ii) Then
GUICtrlSetData(-1, "( " & $ii & " )")
EndIf
Sleep(15)
Next
|
|