listdlg.h

来自「数据结构课程设计!MFC做的! 其中有个是链表(单链表」· C头文件 代码 · 共 70 行

H
70
字号
// listDlg.h : header file
//

#if !defined(AFX_LISTDLG_H__9A03BFC0_2B22_4ACA_A5FE_DA7531B649C1__INCLUDED_)
#define AFX_LISTDLG_H__9A03BFC0_2B22_4ACA_A5FE_DA7531B649C1__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CListDlg dialog

class CListDlg : public CDialog
{
// Construction
public:
	CListDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CListDlg)
	enum { IDD = IDD_LIST_DIALOG };
	int		m_e1;
	int		m_e3;
	int		m_e4;
	int		m_e5;
	CString	m_e2;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;
    afx_msg void Draw_1();
	afx_msg void Draw_2();
	afx_msg void Draw_3();
	// Generated message map functions
	//{{AFX_MSG(CListDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButton1();
	afx_msg void OnRadio1();
	afx_msg void OnChangeEdit1();
	afx_msg void OnChangeEdit2();
	afx_msg void OnChangeEdit3();
	afx_msg void OnChangeEdit4();
	afx_msg void OnChangeEdit5();
	afx_msg void OnButton2();
	afx_msg void OnButton3();
	afx_msg void OnRadio2();
	afx_msg void OnRadio3();
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
    public:
	void CListDlg::DrawArc(CPoint,CPoint,int);
};

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

#endif // !defined(AFX_LISTDLG_H__9A03BFC0_2B22_4ACA_A5FE_DA7531B649C1__INCLUDED_)

⌨️ 快捷键说明

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