Function Reference

_GUICtrlButton_SetStyle

ボタンのスタイルを設定します。

#Include <GuiButton.au3>
_GUICtrlButton_SetStyle($hWnd, $iStyle)

 

パラメータ

$hWnd コントロールのハンドル
$iStyle ボタンスタイルの組み合わせです

 

返し値

なし。

 

注意

なし。

 

関連

 

こちらも参照

MSDNライブラリでBM_SETSTYLEを検索して下さい。

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>

Opt("MustDeclareVars", 1)

_Main()

Func _Main()
    Local $btn, $btn2

    GUICreate("Buttons", 400, 400)
    GUISetState()

    $btn = GUICtrlCreateButton("Button1", 10, 10, 90, 50)

    $btn2 = GUICtrlCreateButton("Button2", 10, 70, 90, 50)

    MsgBox(4096, "Information", "Setting Button Style")
    _GUICtrlButton_SetStyle($btn, $BS_AUTORADIOBUTTON)
    _GUICtrlButton_SetStyle($btn2, $BS_AUTOCHECKBOX)
   
    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd

    Exit
EndFunc   ;==>_Main