⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 appwindow.h

📁 WinCE VC++实现设备视频捕捉和拍照
💻 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 + -