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

📄 bkimgdlg.h

📁 VC实现对word文档的操作
💻 H
字号:
// bkImgDlg.h : header file
//

/*
this is a sample using the background image
by http://www.vchelp.net
the main code is in BOOL XXXX::OnInitDialog()

*/

#if !defined(AFX_BKIMGDLG_H__94E26A48_B215_11D3_BDE9_FA8CD7E3F600__INCLUDED_)
#define AFX_BKIMGDLG_H__94E26A48_B215_11D3_BDE9_FA8CD7E3F600__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CBkImgDlg dialog
#include "pictureWindow.h"

class CBkImgDlg : public CDialog
{
// Construction
public:
	CBkImgDlg(CWnd* pParent = NULL);	// standard constructor
	
	//成员变量
	CPictureWindow m_pic1;//为整个窗口使用
	CPictureWindow m_pic2;//为子窗口使用
// Dialog Data
	//{{AFX_DATA(CBkImgDlg)
	enum { IDD = IDD_BKIMG_DIALOG };
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBkImgDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CBkImgDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_BKIMGDLG_H__94E26A48_B215_11D3_BDE9_FA8CD7E3F600__INCLUDED_)

⌨️ 快捷键说明

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