CPagerCtrl::SetBorder
设置当前页导航控件的边框大小。
int SetBorder(
int iBorder
);
参数
Parameter |
说明 |
---|---|
[in] iBorder |
新的边框大小,单位是像素。 如果 iBorder 参数为负,边框大小设置为零。 |
要求
标头: afxcmn.h
返回值
前面的边框大小,单位是像素。
备注
此方法发送 PGM_SETBORDER 信息,在 Windows SDK所述。
示例
下面的示例创建一个页导航控件,然后使用 CPagerCtrl::SetChild 方法创建一个很长的按钮控件与页导航控件。 然后该示例使用 CPagerCtrl::SetButtonSize 方法设置页导航控件的高度为20像素、 CPagerCtrl::SetBorder 方法设置边框粗细为1像素。
// Initialize the dropdown menu of the splitbutton control.
m_splitButton.SetDropDownMenu(IDR_MENU1, 0);
// Create the pager control.
BOOL nRet;
CRect rect;
GetClientRect(&rect);
nRet = m_pager.Create(
(WS_VISIBLE | WS_CHILD | PGS_HORZ),
CRect(rect.Width()/4, 5, (rect.Width() * 3)/4, 55),
this,
IDC_PAGER1);
m_pager.GetClientRect( &rect );
nRet = m_button.Create(
_T("This is a very, very long button. 012345678901234567890"),
(WS_VISIBLE | WS_CHILD), // Do not use CCS_NORESIZE.
CRect(0,0,rect.Width(),30),
&m_pager, IDC_BUTTON1);
m_pager.SetChild(m_button.m_hWnd);
m_pager.SetButtonSize( 20 );
m_pager.SetBorder( 1 );