propertypage1.h

来自「用VC做的订单管理系统,可以实现网络订单的各种功能」· C头文件 代码 · 共 97 行

H
97
字号
// PropertyPage1.h : header file
//

#ifndef __PROPERTYPAGE1_H__
#define __PROPERTYPAGE1_H__

/////////////////////////////////////////////////////////////////////////////
// CPropertyPage1 dialog

class CPropertyPage1 : public CPropertyPage
{
	DECLARE_DYNCREATE(CPropertyPage1)

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

// Dialog Data
	//{{AFX_DATA(CPropertyPage1)
	enum { IDD = IDD_PROPPAGE1 };
	BOOL	m_SplashScreen;
	BOOL	m_StatusBar;
	BOOL	m_ToolBar;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CPropertyPage1)
	public:
	virtual BOOL OnApply();
	virtual BOOL OnSetActive();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CPropertyPage1)
	afx_msg void OnSplashscreen();
	afx_msg void OnStatusbar();
	afx_msg void OnToolbar();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};


/////////////////////////////////////////////////////////////////////////////
// CPropertyPage2 dialog

class CPropertyPage2 : public CPropertyPage
{
	DECLARE_DYNCREATE(CPropertyPage2)

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

// Dialog Data
	//{{AFX_DATA(CPropertyPage2)
	enum { IDD = IDD_PROPPAGE2 };
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CPropertyPage2)
	public:
	virtual BOOL OnApply();
	virtual BOOL OnSetActive();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CPropertyPage2)
	afx_msg void OnSelectfile();
	afx_msg void OnChangeEditFilepathname();
	afx_msg void OnRadioAccess();
	afx_msg void OnRadioSql();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

private:
	CString m_strFilePath;
};



#endif // __PROPERTYPAGE1_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?