函数参考


_GUICtrlTab_RemoveImage

删除控件图像列表的图像

#Include <GuiTab.au3>
_GUICtrlTab_RemoveImage($hWnd, $iIndex)

参数

$hWnd 控件句柄
$iIndex 删除图像的 0 基索引

返回值

None.

注意/说明

 控件更新每个标签的图像索引,因此每个标签仍然是以前关联的图像.
 如果标签使用的图像被删除,选项卡将被设置为没有图像.

相关

示例/演示


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

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

_Main()

Func _Main()
    Local $hGUI, $hImage, $hTab

    ; 创建 GUI
    $hGUI = GUICreate("Tab Control Remove Image", 400, 300)
    $hTab = GUICtrlCreateTab(2, 2, 396, 296)
    GUISetState()

    ; 创建图像
    $hImage = _GUIImageList_Create()
    _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0xFF0000, 16, 16))
    _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0x00FF00, 16, 16))
    _GUIImageList_Add($hImage, _WinAPI_CreateSolidBitmap($hGUI, 0x0000FF, 16, 16))
    _GUICtrlTab_SetImageList($hTab, $hImage)

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

    ; Remove second image
    MsgBox(4160, "信息", "Removing second image in list")
    _GUICtrlTab_RemoveImage($hTab, 1)

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