photolistdlg.h

来自「EVC环境下用SDK开发WINCE的应用程序」· C头文件 代码 · 共 46 行

H
46
字号
// PhotoListDlg.h: interface for the CPhotoListDlg class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PHOTOLISTDLG_H__19315FF9_2825_493F_9000_11806C76CED2__INCLUDED_)
#define AFX_PHOTOLISTDLG_H__19315FF9_2825_493F_9000_11806C76CED2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "resource.h"
#include "NDialog.h"
#include "NListBox.h"
#include "NavButton.h"

class CPhotoListDlg : public CNDialog  
{
public:
	CPhotoListDlg(CNWnd* pParent=NULL, UINT uID = IDD);
	virtual ~CPhotoListDlg();

// Dialog Data
	enum {IDD = IDD_PHOTO_LIST};

protected:
	// Override
	LRESULT WndProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam);
	virtual BOOL OnInitDialog();
	virtual BOOL OnEraseBkgnd(HDC hdc);
	virtual HBRUSH OnCtlColor(HDC hdc,HWND hwnd, UINT nCtlColor);

	// message handles
	void OnOpen();

protected:
	CNavButton	m_btnOpen;

	CNListBox m_lbFileList;

	DECLARE_MESSAGE_MAP()

};

#endif // !defined(AFX_PHOTOLISTDLG_H__19315FF9_2825_493F_9000_11806C76CED2__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?