次の方法で共有


CToolBar::SetSizes

サイズにツール バー ボタンを、sizeButtonで指定されているピクセルで設定するには、このメンバー関数を呼び出します。

void SetSizes(
   SIZE sizeButton,
   SIZE sizeImage 
);

パラメーター

  • sizeButton
    各ボタンのピクセル単位のサイズ。

  • sizeImage
    各イメージのピクセル単位のサイズ。

解説

sizeImage のパラメーターは、ツール バーのビットマップ イメージのサイズ (ピクセル単位) を含める必要があります。sizeButton のサイズは 7 ピクセル幅の余分保持すると追加の高さに 6 ピクセルをイメージを十分である必要があります。この関数は、ボタンに合わせてツール バーの高さを設定します。

ボタンとそのイメージのサイズのソフトウェア設計の推奨する Windows インターフェイスのガイドラインに 従ってツール バーにのみこのメンバー関数を呼び出します。

使用例

// This code fragment is taken from CMainFrame::OnCreate
// CMainFrame is derived from CMDIFrameWnd

// This example shows how to add text to toolbar buttons.
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE 
   | CBRS_TOP) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
{
   TRACE0("Failed to create toolbar\n");
   return -1;      // fail to create
}

//Show text on toolbar buttons.
VERIFY(m_wndToolBar.SetButtonText(0, _T("New")));
VERIFY(m_wndToolBar.SetButtonText(1, _T("Open")));
VERIFY(m_wndToolBar.SetButtonText(2, _T("Save")));
VERIFY(m_wndToolBar.SetButtonText(4, _T("Cut")));
VERIFY(m_wndToolBar.SetButtonText(5, _T("Copy")));
VERIFY(m_wndToolBar.SetButtonText(6, _T("Paste")));
VERIFY(m_wndToolBar.SetButtonText(8, _T("Print")));
VERIFY(m_wndToolBar.SetButtonText(9, _T("About")));

CRect temp;
m_wndToolBar.GetItemRect(0,&temp);
m_wndToolBar.SetSizes(CSize(temp.Width(),
   temp.Height()),CSize(16,15));

必要条件

ヘッダー: afxext.h

参照

関連項目

CToolBar クラス

階層図

CToolBar::LoadBitmap

CToolBar::SetButtonInfo

CToolBar::SetButtons