propertydlg.h

来自「运用扫描法求设计一个最佳比例的聚光腔」· C头文件 代码 · 共 69 行

H
69
字号
#if !defined(AFX_PROPERTYDLG_H__2088D2E9_22C9_45B1_8D6B_B434CDF9174D__INCLUDED_)
#define AFX_PROPERTYDLG_H__2088D2E9_22C9_45B1_8D6B_B434CDF9174D__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CPropertyDlg dialog

class CPropertyDlg : public CDialog
{
// Construction
public:
	void DispData(CString,CString,CString,CString,CString,CString,CString,CString,CString);
	CPropertyDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CPropertyDlg)
	enum { IDD = IDD_PROPERTY };
	CEdit	m_edtSAxis;
	CEdit	m_edtNum;
	CEdit	m_edtLAxis;
	CEdit	m_edtGoodRate;
	CEdit	m_edtGoodPhoton;
	CEdit	m_edtDeadRate;
	CEdit	m_edtDeadPhoton;
	CEdit	m_edtBadRate;
	CEdit	m_edtBadPhoton;
	CString	m_strBadPhoton;
	CString	m_strBadRate;
	CString	m_strDeadPhoton;
	CString	m_strDeadRate;
	CString	m_strGoodPhoton;
	CString	m_strGoodRate;
	CString	m_strLAxis;
	CString	m_strNum;
	CString	m_strSAxis;
	//}}AFX_DATA


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

// Implementation
protected:
	bool bIsCreated;
	CBrush brush;              //画刷
	
	// Generated message map functions
	virtual BOOL OnInitDialog();
	//{{AFX_MSG(CPropertyDlg)
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	//}}AFX_MSG
	HICON m_hpptIcon;    //属性对话框图标
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_PROPERTYDLG_H__2088D2E9_22C9_45B1_8D6B_B434CDF9174D__INCLUDED_)

⌨️ 快捷键说明

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