CMDITabInfo 類別
CMDITabInfo 類別是用來將參數加入至 CMDIFrameWndEx::EnableMDITabbedGroups 方法。 這個類別之成員的控制項 MDI 索引標籤的群組行為。
class CMDITabInfo
Members
公用建構函式
名稱 |
描述 |
---|---|
CMDITabInfo::CMDITabInfo |
預設建構函式。 |
公用方法
名稱 |
描述 |
---|---|
讀取或寫入這個物件從或其中的檔案。 |
資料成員
名稱 |
描述 |
---|---|
指定 [關閉] 按鈕是否在作用中的索引標籤的標籤中。 |
|
指定是否將 MDI 索引標籤。 |
|
指定索引標籤群組是否會顯示開啟的文件清單或顯示捲軸按鈕的快顯功能表。 |
|
指定使用者是否可以拖曳交換索引標籤的位置。 |
|
指定索引標籤是否有平面框架。 |
|
指定每個索引標籤的標籤是否顯示 [關閉] 按鈕。 |
|
指定自訂工具提示是否已啟用。 |
|
指定是否顯示在 MDI 索引標籤的圖示。 |
|
指定每個索引標籤視窗的框線大小。 |
|
指定索引標籤的標籤的樣式。 |
|
指定索引標籤的標籤是否位於上方或下方的頁面。 |
備註
這個類別會指定架構建立 MDI 索引標籤群組的參數。
範例
下列範例示範如何將各種成員變數的值。 CMDITabInfo 類別的。
CMDITabInfo mdiTabParams;
mdiTabParams.m_style = CMFCTabCtrl::STYLE_3D_ONENOTE;
// set to FALSE to place close button at right of tab area
mdiTabParams.m_bActiveTabCloseButton = FALSE;
// set to TRUE to enable document icons on MDI taba
mdiTabParams.m_bTabIcons = TRUE;
// set to FALSE to disable auto-coloring of MDI tabs
mdiTabParams.m_bAutoColor = FALSE;
// set to TRUE to enable the document menu at the right edge of the tab area
mdiTabParams.m_bDocumentMenu = TRUE;
//set to TRUE to enable the user to change the tabs positions by dragging the tabs
mdiTabParams.m_bEnableTabSwap = TRUE;
// set to TRUE to give each tab window has a flat frame
mdiTabParams.m_bFlatFrame = TRUE;
// set to TRUE to enable each tab window to display the Close button on the right edge of the tab.
mdiTabParams.m_bTabCloseButton = FALSE;
// set to TRUE to enable the tabs to display tooltips.
mdiTabParams.m_bTabCustomTooltips = TRUE;
// Specifies that the tabs labels are located at the top of the page
mdiTabParams.m_tabLocation = CMFCTabCtrl::LOCATION_TOP;
EnableMDITabbedGroups(TRUE, mdiTabParams);
繼承階層架構
需求
標題: afxmdiclientareawnd.h