Partilhar via


CButton::SetButtonStyle

Altera o estilo de um botão.

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

Parâmetros

  • nStyle
    Especifica o estilo de botão.

  • bRedraw
    Especifica se o botão deve ser redesenhados.Um valor diferente de zero redesenha o botão.Um valor 0 não redesenhar o botão.O botão é redesenhado por padrão.

Comentários

Use o GetButtonStyle função de membro para recuperar o estilo do botão. A palavra de ordem inferior do estilo de botão completa é o estilo de botão específicas.

Exemplo

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);

Requisitos

Cabeçalho: afxwin.h

Consulte também

Referência

Classe CButton

Gráfico de hierarquia

CButton::GetButtonStyle

BM_SETSTYLE

Outros recursos

CButton membros