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

📄 hikerwbstart.cpp

📁 自己用Markov模型做的一个整句物笔输入法的原型
💻 CPP
字号:
// HikerWBStart.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "HikerWBStart.h"
#include "HikerWBUI.h"
#include "HikerWBStartDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CHikerWBStartApp

BEGIN_MESSAGE_MAP(CHikerWBStartApp, CWinApp)
	//{{AFX_MSG_MAP(CHikerWBStartApp)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHikerWBStartApp construction

CHikerWBStartApp::CHikerWBStartApp()
{
	// TODO: add construction code here,
	// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CHikerWBStartApp object

CHikerWBStartApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CHikerWBStartApp initialization

BOOL CHikerWBStartApp::InitInstance()
{
	if (CWnd::FindWindow(0, _T("终结者五笔")))
	{
		AfxMessageBox("终结者五笔已经运行!", MB_OK|MB_ICONINFORMATION);
		return FALSE;
	}

	AfxEnableControlContainer();

	// Standard initialization
	// If you are not using these features and wish to reduce the size
	//  of your final executable, you should remove from the following
	//  the specific initialization routines you do not need.

//#ifdef _AFXDLL
//	Enable3dControls();			// Call this when using MFC in a shared DLL
//#else
//	Enable3dControlsStatic();	// Call this when linking to MFC statically
//#endif

	CHikerWBStartDlg dlg;
	m_pMainWnd = &dlg;
	//int nResponse = dlg.DoModal();

	dlg.Create(IDD_HIKERWBSTART_DIALOG, NULL);
	//dlg.ModifyStyleEx(NULL, WS_EX_TOPMOST);
	//dlg.SetWindowText("HikerWB");
	//dlg.ShowWindow(SW_SHOW);	
	SetWindowPos(dlg.GetSafeHwnd(), HWND_BOTTOM, 100, 100, 600, 600, SWP_HIDEWINDOW);
			//the main window should be hidden for avoiding appear at the task bar.

	CreateSubWnd(dlg.GetSafeHwnd());	
	dlg.RunModalLoop();

	DestroySubWnd();		
	dlg.DestroyWindow();

	return FALSE;
}

⌨️ 快捷键说明

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