mdi.cpp
来自「是WTL的开发包,直接包括在路径中,最好放在VC目录中,要更新的包请到官方网站去」· C++ 代码 · 共 43 行
CPP
43 行
#include "stdafx.h"
#include <atlframe.h>
#include <atlgdi.h>
#include <atldlgs.h>
#include "resource.h"
#include "mainfrm.h"
CAppModule _Module;
int Run(LPSTR lpCmdLine = NULL, int nCmdShow = SW_SHOWDEFAULT)
{
CMessageLoop theLoop;
_Module.AddMessageLoop(&theLoop);
CMDIFrame wndMain;
if(wndMain.CreateEx() == NULL)
{
ATLTRACE(_T("Main window creation failed!\n"));
return 0;
}
wndMain.ShowWindow(nCmdShow);
int nRet = theLoop.Run();
_Module.RemoveMessageLoop();
return nRet;
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE /*hPrevInstance*/, LPSTR lpCmdLine, int nCmdShow)
{
::InitCommonControls();
_Module.Init(NULL, hInstance);
int nRet = Run(lpCmdLine, nCmdShow);
_Module.Term();
return nRet;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?