CPagerCtrl::SetBkColor
设置当前页导航控件的背景色。
COLORREF SetBkColor(
COLORREF clrBk
);
参数
Parameter |
说明 |
---|---|
[in] clrBk |
包含页导航控件的新背景色的 COLORREF 值。 |
要求
标头: afxcmn.h
返回值
包含页导航控件的前面的背景色的 COLORREF 值。
备注
此方法发送 PGM_SETBKCOLOR 信息,在 Windows SDK所述。
示例
下面的示例使用 CPagerCtrl::SetBkColor 方法设置页导航控件的背景色设置为红色和 CPagerCtrl::GetBkColor 方法确认该进行了更改。
void CCSplitButton_s2Dlg::OnXColor()
{
COLORREF originalColor;
// Set color to red.
originalColor = m_pager.SetBkColor(RGB(255,0,0));
if (m_pager.GetBkColor() != RGB(255,0,0))
{
MessageBox(_T("Control did not return RED as the previous color."));
}
// The following statement is one way to restore the color.
// m_pager.SetBkColor( originalColor );
}