📄 appwindow.h
字号:
#pragma once
class CAppWindow
{
public:
CAppWindow();
~CAppWindow();
HRESULT CreateControls( HINSTANCE hInstance );
HRESULT Run();
private:
HWND m_hwnd;
HWND m_startButtonHwnd;
HWND m_stopButtonHwnd;
HWND m_stillButtonHwnd;
WCHAR *m_wzStatusString;
CGraphManager *m_pGraphManager;
static LRESULT CALLBACK AppWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
LRESULT HandleWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
HRESULT HandleCommand( WPARAM wParam );
HRESULT RepaintWindow();
HRESULT UpdateNotification( Message *pMessage );
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -