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

📄 inputtext.cpp

📁 基于MM的分词算法
💻 CPP
字号:
// InputText.cpp : implementation file
//

#include "stdafx.h"
#include "MmFenCi.h"
#include "InputText.h"

#include "MmFenCiDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// InputText dialog


InputText::InputText(CWnd* pParent /*=NULL*/)
	: CDialog(InputText::IDD, pParent)
{
	//{{AFX_DATA_INIT(InputText)
	m_inputtext = _T("");
	//}}AFX_DATA_INIT
}


void InputText::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(InputText)
	DDX_Control(pDX, IDC_BUTTON_QUEDING, m_queding);
	DDX_Text(pDX, IDC_EDIT_INPUTTEXT, m_inputtext);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(InputText, CDialog)
	//{{AFX_MSG_MAP(InputText)
	ON_BN_CLICKED(IDC_BUTTON_QUXIAO, OnButtonQuxiao)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// InputText message handlers

void InputText::OnButtonQuxiao() 
{
	// TODO: Add your control notification handler code here
	CDialog::OnOK();
}






⌨️ 快捷键说明

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