Можно ли изменить класс элементов gui средствами autoit или же используя библиотеки windows?
Код:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 256, 192, 192, 124)
_GUICtrlSetClass($Form1,'Main window') ; по дефолту AutoIt v3 GUI
$Button1 = GUICtrlCreateButton("Button1", 56, 80, 75, 25)
$Input1 = GUICtrlCreateInput("Input1", 64, 16, 121, 21)
$Label1 = GUICtrlCreateLabel("Label1", 64, 48, 36, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func _GUICtrlSetClass($hWnd,$class)
; меняем Class
EndFunc