📄 techdemand.h
字号:
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#ifndef WM_ACAD_MFC_BASE
#define WM_ACAD_MFC_BASE (1000)
#endif
#ifndef WM_ACAD_KEEPFOCUS
#define WM_ACAD_KEEPFOCUS (WM_ACAD_MFC_BASE + 1)
#endif
#include "resource.h"
class CMFCTemplateApp : public CWinApp
{
public:
CMFCTemplateApp();
virtual ~CMFCTemplateApp();
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMFCTemplateApp)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
//{{AFX_MSG(CMFCTemplateApp)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CTechDemandDialog dialog
class CTechDemandDialog : public CDialog
{
// Construction
public:
CString m_strEDITTechDemand;
BOOL SearchTechDemand(CString TechDemandText);
CTechDemandDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CTechDemandDialog)
enum { IDD = TechDemandDlg };
CEdit m_ctrlEDITTechDemand;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTechDemandDialog)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CTechDemandDialog)
virtual void OnOK();
virtual void OnCancel();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -