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

📄 activexdialog.h

📁 vc.net内幕系列源码
💻 H
字号:
#pragma once
#include "ccalendar.h"


// CActiveXDialog dialog

class CActiveXDialog : public CDialog
{
	DECLARE_DYNAMIC(CActiveXDialog)

public:
	CActiveXDialog(CWnd* pParent = NULL);   // standard constructor
	virtual ~CActiveXDialog();

// Dialog Data
	enum { IDD = IDD_ACTIVEXDIALOG };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

	DECLARE_MESSAGE_MAP()
public:
	void NewMonthCalendar1();
	afx_msg void OnBnClickedNextweek();
	afx_msg void OnBnClickedSelectdate();
	virtual BOOL OnInitDialog();
	DECLARE_EVENTSINK_MAP()
public:
	CCalendar m_calendar;
	short m_sDay;
	short m_sMonth;
	short m_sYear;
	COleVariant m_varValue;
	unsigned long m_BackColor;
protected:
	virtual void OnOK();
};

⌨️ 快捷键说明

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