资源简介

mfc自带的tabsheet控件是横排按钮在上面的,这个自绘控件实现在左侧竖排的Tab选择,并且可以添加图标。

资源截图

代码片段和文件信息

// MyPropertySheet.cpp : 实现文件
//

#include “stdafx.h“
#include “MyPropertySheet.h“
#include

extern bool OPP[2];

CView* g_pView ;
// CMyPropertySheet
static BOOL bMoved[4] = {FALSEFALSEFALSEFALSE};

IMPLEMENT_DYNAMIC(CMyPropertySheet CPropertySheet)

CMyPropertySheet::CMyPropertySheet(UINT nIDCaption CWnd* pParentWnd UINT iSelectPage)
:CPropertySheet(nIDCaption pParentWnd iSelectPage) m_nSelectedItem(0) m_clrTextBkSele(RGB(150150150))m_clrSeprator(RGB(0132255))
m_clrCaption(RGB(92132255))
{
m_szCaption = new TCHAR[128];
//默认16*16,32位色图标
m_imgList.Create(1616ILC_COLOR32 0 20);
m_ftList.CreatePointFont(90_T(“Papyrus“));
}

CMyPropertySheet::CMyPropertySheet(LPCTSTR pszCaption CWnd* pParentWnd UINT iSelectPage)
:CPropertyS

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1588  2010-06-08 16:31  MypropertySheet.h

     文件      12217  2010-06-08 18:17  MypropertySheet.cpp

----------- ---------  ---------- -----  ----

                13805                    2


评论

共有 条评论