zjg2003 发表于 2009-5-12 12:11:26

请教关于是Edit文本框的问题

本帖最后由 zjg2003 于 2009-5-13 21:20 编辑

默认设置了 Edit文本框 里面有数据,现在就是想:

当鼠标点击 Edit文本框 时自动清空里面的数据

不知道要如何判断鼠标点击是否点击了 Edit文本框?

顽固不化 发表于 2009-5-12 16:12:06

1# zjg2003 #include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 192, 124)
$Edit1 = GUICtrlCreateEdit("", 80, 40, 449, 273)
GUICtrlSetData(-1, "在这里输入文本")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        $Mouse=GUIGetCursorInfo()
        If $Mouse=1 And $Mouse=$Edit1 Then
                $Txt=GUICtrlRead($Edit1)
                If $Txt="在这里输入文本" Then
                        GUICtrlSetData($Edit1,"")
                EndIf
        EndIf
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

zjg2003 发表于 2009-5-13 21:20:09

谢谢,照你说的OK了
页: [1]
查看完整版本: 请教关于是Edit文本框的问题