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

📄 mainfrm.h

📁 EmfMerger幻灯片打印辅助工具,能将几张幻灯片合并后打印. 可以任意调节各幻灯片的间距
💻 H
字号:
// MainFrm.h : CMainFrame 类的接口
//

#include "EmfMeger.h"
#pragma once

class CMainFrame : public CFrameWnd
{
	
protected: // 仅从序列化创建
	CMainFrame();
	DECLARE_DYNCREATE(CMainFrame)

// 属性
public:
	CEmfMerger m_EmfMerger;

// 操作
public:

// 重写
public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);

// 实现
public:
	virtual ~CMainFrame();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:  // 控件条嵌入成员
	CStatusBar  m_wndStatusBar;
	CToolBar    m_wndToolBar;

// 生成的消息映射函数
protected:
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnAddWatermark();
	afx_msg void OnSetCopyright();
	afx_msg void OnSetFilename();

	afx_msg void On12prePage();
	afx_msg void On16prePage();
	afx_msg void On2prePage();
	afx_msg void On25prePage();
	afx_msg void On4prePage();
	afx_msg void On6prePage();
	afx_msg void On8prePage();
	afx_msg void On9prePage();
	afx_msg void OnFirstPage();
	afx_msg void OnLastPage();
	afx_msg void OnLessHSpace();
	afx_msg void OnMoreHSpace();
	afx_msg void OnLessVSpace();
	afx_msg void OnMoreVSpace();
	afx_msg void OnNextPage();
	afx_msg void OnPageNum();
	afx_msg void OnPageNumContune();
	afx_msg void OnPrePage();
	afx_msg void OnFileOpen();	
	afx_msg void OnFileSaveEmf();
	afx_msg void OnUpdatePageNum(CCmdUI *pCmdUI);
	afx_msg void OnUpdatePageNumContune(CCmdUI *pCmdUI);
	afx_msg void OnUpdateprePage(CCmdUI *pCmdUI);
protected:
	virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);

private:
	int m_MenuSelectIndex;
	afx_msg void OnUpdateWhichPage(CCmdUI *pCmdUI);
};


⌨️ 快捷键说明

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