📄 testlogclient.cpp
字号:
// TestLogClient.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "TestLogClient.h"
#include "TestLogClientDlg.h"
/////////////////////////////////////////////////////////////////////////////
// CTestLogClientApp
BEGIN_MESSAGE_MAP(CTestLogClientApp, CWinApp)
//{{AFX_MSG_MAP(CTestLogClientApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CTestLogClientApp construction
CTestLogClientApp::CTestLogClientApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CTestLogClientApp object
CTestLogClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CTestLogClientApp initialization
BOOL CTestLogClientApp::InitInstance()
{
::CoInitialize(NULL);
AfxEnableControlContainer();
{
CTestLogClientDlg dlg;
m_pMainWnd = &dlg;
dlg.DoModal();
}
::CoUninitialize();
return FALSE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -