共用方式為


CButton::SetButtonStyle

變更按鈕的樣式。

void SetButtonStyle(
   UINT nStyle,
   BOOL bRedraw = TRUE 
);

參數

  • nStyle
    指定 按鈕樣式

  • bRedraw
    指定按鈕是否要重新繪製。 非零值重繪按鈕。 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);

需求

Header: afxwin.h

請參閱

參考

CButton 類別

階層架構圖

CButton::GetButtonStyle

BM_SETSTYLE