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

📄 gotodlg.h

📁 Smartphone手机阅读软件
💻 H
字号:
// GotoDlg.h: interface for the CGotoDlg class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GOTODLG_H__785CCB2D_1BDE_4742_9BBB_8B9BAAB1C033__INCLUDED_)
#define AFX_GOTODLG_H__785CCB2D_1BDE_4742_9BBB_8B9BAAB1C033__INCLUDED_

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

#include "resource.h"

class CGotoDlg : public CDialogImpl<CGotoDlg>
{
public:
	enum { IDD = IDD_GOTODLG };
	BEGIN_MSG_MAP(CGotoDlg)
		MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
		COMMAND_ID_HANDLER(IDM_ACTION, OnDone)
		COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
	END_MSG_MAP()
	CGotoDlg();
	virtual ~CGotoDlg();

	LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
	LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
	LRESULT OnDone(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
public:
	CString m_WindowTitle;
	int		m_GotoPageNo;	
	int     m_RecentPage;
	int     m_TotalPage;
};

#endif // !defined(AFX_GOTODLG_H__785CCB2D_1BDE_4742_9BBB_8B9BAAB1C033__INCLUDED_)

⌨️ 快捷键说明

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