Click here to Skip to main content
15,892,059 members
Articles / Desktop Programming / MFC

Automatic Tab Bar for MDI Frameworks

Rate me:
Please Sign up or sign in to vote.
4.80/5 (14 votes)
3 Jan 2003Public Domain 245.7K   5.8K   82  
A dockable bar containing a tabbed list of open windows
// DemoPropertySheet.h : header file
//
// This class defines custom modal property sheet 
// CDemoPropertySheet.
 
#ifndef __DEMOPROPERTYSHEET_H__
#define __DEMOPROPERTYSHEET_H__

#include "DemoPropertyPage.h"

/////////////////////////////////////////////////////////////////////////////
// CDemoPropertySheet

class CDemoPropertySheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CDemoPropertySheet)

// Construction
public:
	CDemoPropertySheet(CWnd* pWndParent = NULL);

// Attributes
public:
	CDemoPropertyPage1 m_Page1;
	CDemoPropertyPage2 m_Page2;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDemoPropertySheet)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CDemoPropertySheet();

// Generated message map functions
protected:
	//{{AFX_MSG(CDemoPropertySheet)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

#endif	// __DEMOPROPERTYSHEET_H__

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Engineer
Japan Japan
Systems Engineer

Comments and Discussions