📄 ntsharesdemo.cpp
字号:
#include "stdafx.h"
#include "NTSharesDemo.h"
#include "NTSharesDemoDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CSharesDemoApp
BEGIN_MESSAGE_MAP(CSharesDemoApp, CWinApp)
END_MESSAGE_MAP()
// CSharesDemoApp construction
CSharesDemoApp::CSharesDemoApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
// The one and only CSharesDemoApp object
CSharesDemoApp theApp;
// CSharesDemoApp initialization
BOOL CSharesDemoApp::InitInstance()
{
// InitCommonControls() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise, any window creation will fail.
InitCommonControls();
CWinApp::InitInstance();
CSharesDemoDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
return FALSE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -