这段代码错在哪?为什么设置背景后按钮不能点击呀?【已解决】
本帖最后由 jtw 于 2013-3-14 21:02 编辑代码如下:#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Tab1 = GUICtrlCreateTab(56, 56, 497, 337)
$TabSheet1 = GUICtrlCreateTabItem("TabSheet1")
GUICtrlCreateTabItem("")
$Pic1 = GUICtrlCreatePic(@ScriptDir & "\back.jpg", 56, 80, 497, 313)
$Button1 = GUICtrlCreateButton("Button1", 88, 120, 121, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(4096,"错在哪呀","为什么点击没反应呀?")
EndSwitch
WEnd
为什么 GUICtrlCreateTab设置背景图片后,按钮就不能点击了?请指点,谢谢。 11行下面插一行GuiCtrlSetState(-1, 128) 多谢afan,原来这么简单 在用图形编辑器,插入图片后,属性栏,有个属性设置不使能 afan真是神了,好佩服啊。这个都能完美解决哈哈 一条语句就解决了长期困扰因背景图而烦恼的我们哈哈 确实,我也在找着呢
页:
[1]