appwindow.h

来自「windows ce Camera demo」· C头文件 代码 · 共 28 行

H
28
字号
#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;
	HWND	m_exitButtonHwnd;
    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 + =
减小字号Ctrl + -
显示快捷键?