cdrawsheet.h

来自「机器人运动学动力学及控制的一个小程序,供有兴趣的人参考」· C头文件 代码 · 共 58 行

H
58
字号
// CDrawSheet.h : header file
//
// CDrawSheet is a modeless property sheet that is 
// created once and not destroyed until the application
// closes.  It is initialized and controlled from
// CDrawPropertyFrame.
 // CDrawSheet has been customized to include
// a preview window.
 
#ifndef __CDRAWSHEET_H__
#define __CDRAWSHEET_H__

#include "ControlPage.h"
#include "DrawPreviewWnd.h"

/////////////////////////////////////////////////////////////////////////////
// CDrawSheet

class CDrawSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CDrawSheet)

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

// Attributes
public:
	CControlPage m_Page1;
	CTypePage m_Page2;
	CDrawPreviewWnd m_wndPreview;

// Operations
public:

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

// Implementation
public:
	virtual ~CDrawSheet();
		 virtual BOOL OnInitDialog();
	 virtual void PostNcDestroy();

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

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

#endif	// __CDRAWSHEET_H__

⌨️ 快捷键说明

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