自动:控制器不使用背景图像

时间:2017-03-12 15:14:51

标签: autoit

在后台添加图片后,页面上的控制器不再反应,我也不知道如何解决这个问题。

这是我的代码:

#Region ### START Koda GUI section ### Form=  

$TDPAGE = GUICreate("TD", 615, 441, 184, 116)
GUICtrlCreatePic(@ScriptDir & '\fond2.jpg', 0, 0, 0, 0)
$Label_titleTD= GUICtrlCreateLabel("TD", 233, 36, 91, 85)
GUICtrlSetFont(-1, 36, 800, 0, "My Lucky Penny") 
GUICtrlSetBkColor($Label_titreTD, $GUI_BKCOLOR_TRANSPARENT   
$FileTD = GUICtrlCreateButton("File", 136, 168, 75, 25)   
$QuitTD = GUICtrlCreateButton("Quit", 336, 168, 75, 25)
GUISetState(@SW_SHOW)

#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
       Case $GUI_EVENT_CLOSE
                        Exit
      Case $FileTD
                        Run("Explorer.exe " & "O:\EPREUVE E6\COMPETENCES\TD")   
        Case $QuitTD
           Exit
            ExitLoop
    EndSwitch
WEnd

1 个答案:

答案 0 :(得分:0)

创建图像后,我添加了:

GUICtrlSetState(-1, $GUI_DISABLE)

它有效