funcparadlg.h

来自「TabBars的开源源码」· C头文件 代码 · 共 66 行

H
66
字号
/*********************************************************************
*	Author:		Simon
*	Date:		2000-11-22
*	Contact us:	inte2000@263.net
*	Web Page: http://www.winmsg.com/cn/orbit.htm (for Chinese version)
*						http://www.winmsg.com/orbit.htm (for English version)
**********************************************************************/

#if !defined(AFX_FUNCPARADLG_H__BB0FA69F_77BD_4C10_A4EE_370D970BBF01__INCLUDED_)
#define AFX_FUNCPARADLG_H__BB0FA69F_77BD_4C10_A4EE_370D970BBF01__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FuncParaDlg.h : header file
//
#include "GridCtrl\GridCtrl.h"

/////////////////////////////////////////////////////////////////////////////
// CFuncParaDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CFuncParaDlg)
	enum { IDD = IDD_FUNCPARA_DLG };
	//}}AFX_DATA

	CImageList m_listImage;
	CString m_strFuncName,m_strRetType;
	CStringArray m_strAPapaList;
	CStringArray m_strARtn;
	CString m_strUserName,m_strFuncDesc;

	void SetPara(CString & strFuncName,CStringArray & para,CString & strRetType);
	CGridCtrl m_Grid;

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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CFuncParaDlg)
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_FUNCPARADLG_H__BB0FA69F_77BD_4C10_A4EE_370D970BBF01__INCLUDED_)

⌨️ 快捷键说明

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