📄 crsform.h
字号:
// crsform.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CCourseForm record view
class CCourseForm : public CRecordView
{
DECLARE_DYNCREATE(CCourseForm)
public:
CCourseForm(); // protected constructor used by dynamic creation
// Form Data
public:
//{{AFX_DATA(CCourseForm)
enum { IDD = IDD_COURSE_FORM };
CEdit m_ctlCourseID;
CCourseSet* m_pSet;
//}}AFX_DATA
// Attributes
public:
BOOL m_bAddMode;
// Operations
public:
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CSectionForm)
public:
virtual CRecordset* OnGetRecordset();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnInitialUpdate(); // called first time after construct
virtual BOOL OnMove(UINT nIDMoveCommand);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CCourseForm();
// Generated message map functions
//{{AFX_MSG(CCourseForm)
afx_msg void OnRecordAdd();
afx_msg void OnRecordDelete();
afx_msg void OnRecordRefresh();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -