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

📄 mywizardcontrol.h

📁 一个多方面查询的系统,也是很辛苦找到,并且做管理系统很多方面都用到的
💻 H
字号:
// MyWizardcontrol.h: interface for the CMyWizardcontrol class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MYWIZARDCONTROL_H__D63893E3_3DC3_4499_A603_6AC3DE80697C__INCLUDED_)
#define AFX_MYWIZARDCONTROL_H__D63893E3_3DC3_4499_A603_6AC3DE80697C__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MySheetpage.h"

class CMyWizardcontrol  
{
public:
	bool bEnabel;
	void setEnable(bool enable);
	void outRect();
	void OnTimer();
	void OnMouseMove(CPoint point);
	void OnRButtonDown(CPoint point);
	void OnLButtonUp(CPoint point);
	void OnLButtonDown(CPoint point);
	CWnd *pParentWnd;
	CMyWizardcontrol(CWnd *parent);
	void draw(CDC *pDC);
	void AddPage(CMySheetpage *page);
	void setPos(CRect rc);
	CRect WizardRect;
	int trace[10];
	int iCurrentPage;
	int iStep;
	CPtrArray arPages;

	void Downpage();
	void Uppage();
	CMyWizardcontrol();
	virtual ~CMyWizardcontrol();

};

#endif // !defined(AFX_MYWIZARDCONTROL_H__D63893E3_3DC3_4499_A603_6AC3DE80697C__INCLUDED_)

⌨️ 快捷键说明

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