CPagerCtrl::SetButtonSize
設定目前頁面巡覽區控制項的按鈕大小。
int SetButtonSize(
int iButtonSize
);
參數
參數 |
描述 |
---|---|
[in] iButtonSize |
新按鈕的大小,以像素為單位)。 |
需求
標題: afxcmn.h
傳回值
上一個按鈕的大小,以像素為單位)。
備註
這個方法會將 PGM_SETBUTTONSIZE 資訊,在 Windows SDK說明。
如果頁面巡覽區控制項 PGS_HORZ 樣式,按鈕大小決定頁面巡覽區按鈕的寬度,,而且,如果頁面巡覽區控制項 PGS_VERT 樣式,按鈕大小決定頁面巡覽區按鈕的高度。 預設按鈕大小為捲軸的寬度的四分之三,,而最小值的按鈕大小為 12 像素。 如需詳細資訊,請參閱 Pager Control Styles。
範例
下列範例會建立頁面巡覽區控制項,然後使用方法 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 );