找回密码
 加入
搜索
查看: 1855|回复: 2

[GUI管理] _GUICtrlTreeView_EditText的问题

[复制链接]
发表于 2013-4-14 20:58:38 | 显示全部楼层 |阅读模式
用_GUICtrlTreeView_EditText编辑了树节点后,为啥编辑完毕又变回了原来的文本?
不管_GUICtrlTreeView_EndEdit($hWnd, $fCancel = False)中设置true或false都没用
请高手指点一下.
还有请指点一下如何判断一个节点是否正在编辑中
代码是该函数的实例代码:
#AutoIt3Wrapper_au3check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiTreeView.au3>
#include <GuiImageList.au3>
#include <WindowsConstants.au3>

Opt('MustDeclareVars', 1)

$Debug_TV = False ; 检查传递给函数的类名, 设置为真并使用另一控件的句柄观察其工作

_Main()

Func _Main()

    Local $hItem[6], $hImage, $tRect, $hTreeView
    Local $iStyle = BitOR($TVS_EDITLABELS, $TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS, $TVS_CHECKBOXES)
   
    GUICreate("TreeView End Edit", 400, 300)

    $hTreeView = GUICtrlCreateTreeView(2, 2, 396, 268, $iStyle, $WS_EX_CLIENTEDGE)
    ; 关闭unicode,dllstruct此时不支持
    _GUICtrlTreeView_SetUnicodeFormat($hTreeView, False)
    GUISetState()

    $hImage = _GUIImageList_Create(16, 16, 5, 3)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 110)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 131)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 165)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 168)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 137)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 146)
    _GUICtrlTreeView_SetNormalImageList($hTreeView, $hImage)

    For $x = 0 To _GUIImageList_GetImageCount($hImage) - 1
        $hItem[$x] = _GUICtrlTreeView_Add($hTreeView, 0, StringFormat("[%02d] New Item", $x + 1), $x, $x)
    Next
   
    ; 编辑项目0的标签
    _GUICtrlTreeView_EditText($hTreeView, $hItem[0])
    Sleep(500)
    Send("This is a test")
    Sleep(500)
    _GUICtrlTreeView_EndEdit($hTreeView)

    ; 循环至用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main
 楼主| 发表于 2013-4-15 12:25:07 | 显示全部楼层
都木有人知道吗,还是没看懂问题呀
发表于 2013-4-19 11:01:04 | 显示全部楼层
本帖最后由 netegg 于 2013-4-19 11:02 编辑

回复 2# solo_k
_GUICtrlTreeView_EditText只是发送个编辑文本的消息,并不管编辑后的文本保存
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-5-5 06:40 , Processed in 0.080591 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表