jtw 发表于 2013-3-14 19:21:52

这段代码错在哪?为什么设置背景后按钮不能点击呀?【已解决】

本帖最后由 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设置背景图片后,按钮就不能点击了?请指点,谢谢。

afan 发表于 2013-3-14 19:39:42

11行下面插一行GuiCtrlSetState(-1, 128)

jtw 发表于 2013-3-14 20:59:54

多谢afan,原来这么简单

glsanshi 发表于 2013-3-14 21:51:05

在用图形编辑器,插入图片后,属性栏,有个属性设置不使能

silvay22 发表于 2013-4-11 23:51:48

afan真是神了,好佩服啊。这个都能完美解决哈哈

silvay22 发表于 2013-4-11 23:52:31

一条语句就解决了长期困扰因背景图而烦恼的我们哈哈

chamlien 发表于 2013-9-1 15:35:01

确实,我也在找着呢
页: [1]
查看完整版本: 这段代码错在哪?为什么设置背景后按钮不能点击呀?【已解决】