andreitrane
Новичок
- Сообщения
- 141
- Репутация
- 3
в koda form designer, когда делаешь GUI форму, можно сделать так, чтобы какая нибудь клавиша была скрыта. Как сделать чтобы при нажатии на другую клавишу появилась скрытая??
Код:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 166, 113, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 16, 16, 105, 33)
$Button2 = GUICtrlCreateButton("Button2", 16, 56, 105, 33)
GUICtrlSetState(-1, $GUI_HIDE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
EndSwitch
WEnd