CButton::SetButtonStyle
Altera o estilo de um botão.
void SetButtonStyle(
UINT nStyle,
BOOL bRedraw = TRUE
);
Parâmetros
nStyle
Especifica estilo de botão.bRedraw
Especifica se o botão deve ser redesenhado. Um valor diferente de zero redesenha o botão. Um 0 valores não redesenham o botão. o botão é redesenhado por padrão.
Comentários
Use a função de membro de GetButtonStyle para recuperar o estilo do botão. A palavra de ordem baixa de estilo completo de botões são o estilo botão específico.
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