userlong 发表于 2012-11-9 17:39:59

_GUICtrlToolbar_AddButton 怎么判断点击

#include <GUIConstantsEx.au3>
#include <GuiToolbar.au3>
#include <ToolbarConstants.au3>
#include <WindowsConstants.au3>
#Include <GuiImageList.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("2222222222222", 375, 200)
Global $ToolBar1, $ToolBar2, $ToolBar3

;GUICtrlCreateMenu("")
$hToolBar = _GUICtrlToolbar_Create($Form2, $TBSTYLE_FLAT + $TBSTYLE_LIST)
; $hToolBar_Image = _GUIImageList_Create(32, 32, 5,5);创建 ImageList 控件
;_GUIImageList_AddIcon($hToolBar_Image, 'Client.bmp', 0,True);添加图标到图像列表


$String3 = _GUICtrlToolbar_AddString($hToolbar, " 我的 ");添加新字符串到工具栏的字符串池
_GUICtrlToolbar_AddButton($hToolBar, $ToolBar3, 0, $String3); 添加按钮

GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
        Case $GUI_EVENT_CLOSE
       
               
        Exit


EndSwitch
怎么判断被点击了呢?   查询了好多资料 都搞不定

netegg 发表于 2012-11-9 17:54:01

看看udf创建函数的示例
页: [1]
查看完整版本: _GUICtrlToolbar_AddButton 怎么判断点击