📄 ppcplayerapp.cpp
字号:
#include "GSPlayer2.h"
#include "PpcPlayerApp.h"
#include "PpcMainWnd.h"
CPlayerApp* GetPlayerAppClass()
{
return new CPpcPlayerApp();
}
CPpcPlayerApp::CPpcPlayerApp()
{
INITCOMMONCONTROLSEX iccex;
iccex.dwSize = sizeof(INITCOMMONCONTROLSEX);
iccex.dwICC = ICC_BAR_CLASSES | ICC_COOL_CLASSES;
InitCommonControlsEx(&iccex);
}
CPpcPlayerApp::~CPpcPlayerApp()
{
}
CMainWnd* CPpcPlayerApp::GetMainWndClass()
{
return new CPpcMainWnd();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -