Click here to Skip to main content
15,895,011 members
Articles / Desktop Programming / MFC

Screen Designer Classes

Rate me:
Please Sign up or sign in to vote.
4.93/5 (39 votes)
7 Mar 20045 min read 147.8K   3.9K   109  
Screen Designer Classes for MFC applications
// Copyright � 2002 Oink!
// FILE NAME	: DynPropPage1.h
// DESCRIPTION	: Property page
//
// PROGRAMMER	DATE		PATCH	DESCRIPTION
// ============	===========	=======	===============================================

#if !defined(AFX_DYNPROPPAGE1_H__D12F8C03_BB4C_4EBB_B906_F341A2F35A05__INCLUDED_)
#define AFX_DYNPROPPAGE1_H__D12F8C03_BB4C_4EBB_B906_F341A2F35A05__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DynPropPage1.h : header file
//

#include "resource.h"

/////////////////////////////////////////////////////////////////////////////
// CDynPropPage1 dialog

class CDynPropPage1 : public CPropertyPage
{
	DECLARE_DYNCREATE(CDynPropPage1)

// Construction
public:
	CDynPropPage1();
	~CDynPropPage1();

// Dialog Data
	//{{AFX_DATA(CDynPropPage1)
	enum { IDD = IDD_DYNPROP_PAGE1 };
	BOOL	m_Visible;
	int		m_OrdinalValue;
	CString m_RadioID;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CDynPropPage1)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CDynPropPage1)
		// NOTE: the ClassWizard will add member functions here
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DYNPROPPAGE1_H__D12F8C03_BB4C_4EBB_B906_F341A2F35A05__INCLUDED_)

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions