在指定按钮或链接上显示盾牌图标
#include <GuiButton.au3>
_GUICtrlButton_SetShield($hWnd [, $fRequired = True])
$hWnd | 控件的控件ID/句柄 |
$fRequired | [可选参数] 使用 True 绘制一个盾牌图标,使用 False 不绘制. |
成功: | 返回 True |
失败: | 返回 False |
在MSDN中搜索
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
#include <GuiMenu.au3>
Global $btn, $btn2
; 注意这些按钮的控件 ID 无法使用 GuiCtrlRead 读取
_Main()
Func _Main()
Local $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$btn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 90, 30)
_GUICtrlButton_SetShield($btn)
$btn2 = _GUICtrlButton_Create($hGUI, "Button2", 10, 60, 90, 30, $BS_SPLITBUTTON)
_GUICtrlButton_SetShield($btn2)
GUISetState()
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>_Main