📄 main.cpp
字号:
#include "model.h"#include "view.h"#ifdef WIN32/* The one and only ThisMfcApp object. In the MFC world, creating this global object is what starts the application.*/#include "ThisMfcApp.h"ThisMfcApp app;#elseint main( int argc, char** argv){ Model * model = Model::Instance(); model->Main(); return 0;}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -