CButton::SetButtonStyle
ボタンのスタイルを変更します。
void SetButtonStyle(
UINT nStyle,
BOOL bRedraw = TRUE
);
パラメーター
nStyle
ボタン スタイル。bRedraw
ボタンを再描画するかどうかを指定します。 0 以外の値を指定すると、ボタンを再描画します。 0 を指定すると、再描画しません。 既定では再描画します。
解説
ボタン スタイルを取得するには GetButtonStyle メンバー関数を使用します。 完全なボタン スタイルの下位ワードが、ボタンに設定されているスタイルです。
使用例
CButton myRadioButton;
// Create a radio button.
myRadioButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_RADIOBUTTON,
CRect(10,10,100,30), pParentWnd, 1);
// Change the button style to use one of the "auto" styles; for
// push button, change to def push button.
UINT uStyle = myRadioButton.GetButtonStyle();
if (uStyle == BS_PUSHBUTTON)
uStyle = BS_DEFPUSHBUTTON;
else if (uStyle == BS_RADIOBUTTON)
uStyle = BS_AUTORADIOBUTTON;
else if (uStyle == BS_CHECKBOX)
uStyle = BS_AUTOCHECKBOX;
else if (uStyle == BS_3STATE)
uStyle = BS_AUTO3STATE;
// Change the button style to the one wanted.
myRadioButton.SetButtonStyle(uStyle);
必要条件
**ヘッダー:**afxwin.h