📄 koulesapp.cpp
字号:
#include "Headers.h"
#include "resource.h"
#include "KoulesApp.h"
#include "KoulesWin.h"
BEGIN_MESSAGE_MAP(KoulesApp, DirectDrawApp)
//{{AFX_MSG_MAP(KoulesApp)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
KoulesApp theapp;
BOOL KoulesApp::InitInstance()
{
#ifdef _DEBUG
// afxTraceEnabled=FALSE;
#endif
KoulesWin* win=new KoulesWin;
if (!win->Create( "Koules", IDI_ICON ))
return FALSE;
m_pMainWnd=win;
return DirectDrawApp::InitInstance();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -