函数参考


_GUICtrlTab_DeselectAll

复位标签选项卡,清除任何被设置为按下的状态

#Include <GuiTab.au3>
_GUICtrlTab_DeselectAll($hWnd [, $fExclude = True])

参数

$hWnd 控件句柄
$fExclude [可选参数] 复位标志:
True - 除当前选定的外所有标签将被重置
False - 所有标签项目将被重置

返回值

None.

注意/说明

该设置只适用于 $TCS_BUTTONS 样式的控件

相关

_GUICtrlTab_SetCurSel

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiTab.au3>

$Debug_TAB = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hTab

    ; 创建 GUI
    GUICreate("Tab Control Deselect All", 400, 300)
    $hTab = GUICtrlCreateTab(2, 2, 396, 296, $TCS_BUTTONS)
    GUISetState()

    ; 添加标签
    _GUICtrlTab_InsertItem($hTab, 0, "Tab 1")
    _GUICtrlTab_InsertItem($hTab, 1, "Tab 2")
    _GUICtrlTab_InsertItem($hTab, 2, "Tab 3")

    ; Select 2nd Tab Item
    _GUICtrlTab_SetCurSel($hTab, 1)

    ; Reset tab selection
    MsgBox(4160, "信息", "Resetting tab selection")
    _GUICtrlTab_DeselectAll($hTab, False)

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main