⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wordlistdlg.cpp

📁 一个可以提供语法高亮显示的编辑器
💻 CPP
字号:
// WordlistDlg.cpp: Implementierungsdatei
//

#include "stdafx.h"
#include "scintillamfc.h"
#include "WordlistDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// Dialogfeld CWordlistDlg 


CWordlistDlg::CWordlistDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CWordlistDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CWordlistDlg)
	m_strWordlistNumber = _T("");
	m_strKeywords = _T("and and_eq asm auto bitand bitor bool break case catch char class compl const const_cast continue default delete do double dynamic_cast else enum explicit export extern false float for friend goto if inline int long mutable namespace new not not_eq operator or or_eq private protected public register reinterpret_cast return short signed sizeof static static_cast struct switch template this throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq");
	//}}AFX_DATA_INIT
}


void CWordlistDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CWordlistDlg)
	DDX_CBString(pDX, IDC_WORDLISTNO, m_strWordlistNumber);
	DDX_Text(pDX, IDC_KEYWORDS, m_strKeywords);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CWordlistDlg, CDialog)
	//{{AFX_MSG_MAP(CWordlistDlg)
		// HINWEIS: Der Klassen-Assistent f黦t hier Zuordnungsmakros f黵 Nachrichten ein
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Behandlungsroutinen f黵 Nachrichten CWordlistDlg 

⌨️ 快捷键说明

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