⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdrawsheet.h

📁 机器人运动学动力学及控制的一个小程序,供有兴趣的人参考
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -