检索按钮相关的命令标识符
#Include <GuiToolBar.au3>
_GUICtrlToolbar_IndexToCommand($hWnd, $iIndex)
$hWnd | 控件句柄 |
$iIndex | 按钮索引 |
成功: | 返回按钮命令标识符 |
#include <GuiToolbar.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Constants.au3>
$Debug_TB = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $hGUI, $hToolbar, $iIndex
Local Enum $idNew = 1000, $idOpen, $idSave, $idHelp
; 创建 GUI
$hGUI = GUICreate("Toolbar", 400, 300)
$hToolbar = _GUICtrlToolbar_Create($hGUI)
GUISetState()
; 添加标准系统位图
_GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR)
; 添加按钮
_GUICtrlToolbar_AddButton($hToolbar, $idNew, $STD_FILENEW)
_GUICtrlToolbar_AddButton($hToolbar, $idOpen, $STD_FILEOPEN)
_GUICtrlToolbar_AddButton($hToolbar, $idSave, $STD_FILESAVE)
_GUICtrlToolbar_AddButtonSep($hToolbar)
_GUICtrlToolbar_AddButton($hToolbar, $idHelp, $STD_HELP)
; Show Save button index
$iIndex = _GUICtrlToolbar_CommandToIndex($hToolbar, $idSave)
MsgBox(4096, "信息", "Save button index .: " & $iIndex)
MsgBox(4096, "信息", "Save button command .: " & _GUICtrlToolbar_IndexToCommand($hToolbar, $iIndex))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main