CBitmapButton::SizeToContent

调用此函数调整位图按钮。位图的大小。

void SizeToContent( );

示例

CBitmapButton* pmyButton = new CBitmapButton();

// Create the bitmap button (must include the BS_OWNERDRAW style).
pmyButton->Create(NULL, WS_CHILD|WS_VISIBLE|BS_OWNERDRAW, 
   CRect(10,10,100,100), pParentWnd, 1);

// Load the bitmaps for this button.
pmyButton->LoadBitmaps(IDB_UP, IDB_DOWN, IDB_FOCUS, IDB_DISABLE); 

// Resize the button to be the size of the bitmaps.
pmyButton->SizeToContent();

要求

Header: afxext.h

请参见

参考

CBitmapButton选件类

层次结构图

CBitmapButton::LoadBitmaps

CBitmapButton::AutoLoad