?? testgps.cpp
字號:
#include "stdafx.h"
#include "TestGPS.h"
#include "TestGPSDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
BEGIN_MESSAGE_MAP(CTestGPSApp, CWinApp)
//{{AFX_MSG_MAP(CTestGPSApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
CTestGPSApp::CTestGPSApp()
{
}
CTestGPSApp theApp;
BOOL CTestGPSApp::InitInstance()
{
#ifdef _AFXDLL
Enable3dControls();
#else
Enable3dControlsStatic();
#endif
CTestGPSDlg dlg;
m_pMainWnd = &dlg;
dlg.DoModal();
return FALSE;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -