搜索了整个论坛也没找到个比较适合我们新手的皮肤入门指导。
发现论坛地址http://www.autoitx.com/forum.php ... 1&highlight=she的程序还是不错。
已知我们用koda设计好的界面并将代码复制保存为test.au3。同时将aero.she和Skin.dll复制到test.au3的相同目录中
我们只需要将如下代码插入已经生成的代码的#include .......下#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
FileInstall("aero.she",@ScriptDir & "aero.she")
FileInstall("Skin.dll",@ScriptDir & "Skin.dll")
$skins=@ScriptDir & "aero.she"
$Dll = DllOpen(@ScriptDir & "Skin.dll")
DllCall($Dll, "int", "SkinH_AttachEx", "str", $skins, "str", "mhgd")
DllCall($Dll, "int", "SkinH_SetAero", "int", 1)
$Form1 = GUICreate("test .she skin", 633, 454, 192, 114)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
并将$form1=.......替换成自己用koda生成的$form1=.....即可
f5一下自己的test.au3,我们发现test.au3的皮肤已经从我们用koda设计的土土界面变成aero效果的界面了。
|