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