rundlg.h

来自「visual c++做的小型basic编译器,是我们课程设计要求的!」· C头文件 代码 · 共 54 行

H
54
字号
#if !defined(AFX_RUNDLG_H__A796E49E_796A_4383_AE9D_4847F7C336E5__INCLUDED_)
#define AFX_RUNDLG_H__A796E49E_796A_4383_AE9D_4847F7C336E5__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CRunDlg dialog

class CRunDlg : public CDialog
{
// Construction
public:
	BOOL Create();
	CRunDlg(CWnd* pParent = NULL);   // standard constructor
    CRunDlg(CString c);  
// Dialog Data
	//{{AFX_DATA(CRunDlg)
	enum { IDD = IDD_DIALOG1 };
	CString	m_Edit1;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CRunDlg)
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnEdit1Cls();
	afx_msg void OnEdit1Copy();
	afx_msg void OnEdit1Paste();
	afx_msg void OnEdit1Quit();
	afx_msg void OnEdit1Selall();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_RUNDLG_H__A796E49E_796A_4383_AE9D_4847F7C336E5__INCLUDED_)

⌨️ 快捷键说明

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