_GUICtrlButton_SetShield
Sets the elevation required state for a specified button or command link to display an elevated icon
#include <GuiButton.au3>
_GUICtrlButton_SetShield($hWnd [, $fRequired = True])
Параметры
$hWnd | Дескриптор или идентификатор элемента |
$fRequired |
[необязательный] True to draw an elevated icon, or False otherwise |
Возвращаемое значение
Успех: | Возвращает True |
Ошибка: | Возвращает False |
Примечания
См. также
Искать BCM_SETSHIELD в библиотеке MSDNПример
If @osversion = "WIN_XP" And MsgBox(4160 + 4 + 256, "Информация", "Эта функция не работает в WinXP" & @lf & "продолжить?") = 7 Then Exit
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
#include <GuiMenu.au3>
Global $btn, $btn2
; Примечание: возвращаемый дескриптор этой кнопки не может быть прочитан с помощью функции GuiCtrlRead
_Main()
Func _Main()
Local $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$btn = _GUICtrlButton_Create($hGUI, "Кнопка1", 10, 10, 90, 30)
_GUICtrlButton_SetShield($btn)
$btn2 = _GUICtrlButton_Create($hGUI, "Кнопка2", 10, 60, 90, 30, $BS_SPLITBUTTON)
_GUICtrlButton_SetShield($btn2)
GUISetState()
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>_Main