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

📄 pictureexdlg.h

📁 用Visual C++6.0编程工具
💻 H
字号:
// PictureExDlg.h : Declaration of the CPictureExDlg

#ifndef __PICTUREEXDLG_H_
#define __PICTUREEXDLG_H_

#include "resource.h"       // main symbols
#include <atlhost.h>
#include "PictureExWnd.h"	// Added by ClassView

/////////////////////////////////////////////////////////////////////////////
// CPictureExDlg
class CPictureExDlg : 
	public CAxDialogImpl<CPictureExDlg>
{
public:
	CPictureExDlg();
	~CPictureExDlg();

	enum { IDD = IDD_PICTUREEXDLG };

BEGIN_MSG_MAP(CPictureExDlg)
	MESSAGE_HANDLER(WM_SETCURSOR, OnSetCursor)
	MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown)
	COMMAND_ID_HANDLER(IDC_ABOUT, OnAbout)
	COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
	MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
END_MSG_MAP()

	LRESULT OnSetCursor(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
	LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
	LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
	LRESULT OnAbout(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
	LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);

protected:
	HCURSOR m_hCursor;
	CPictureExWnd m_wndBanner;
};

#endif //__PICTUREEXDLG_H_

⌨️ 快捷键说明

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