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

📄 button.h

📁 此程序实现了类似protel电路画图程序。
💻 H
字号:
// Button.h: interface for the Button class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BUTTON_H__74583B41_741D_11D4_825F_60000000105A__INCLUDED_)
#define AFX_BUTTON_H__74583B41_741D_11D4_825F_60000000105A__INCLUDED_

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

class Button  
{
public:
	Button();
	virtual ~Button();
public:
	BOOL m_LFlag;
	BOOL m_BeSelected;
	BOOL m_MoveBeSelected;
	CPoint m_Point;
	int m_Width,m_Hight;
    UINT m_ID;
	UINT m_BitmapID1,m_BitmapID2,m_BitmapID3;
public :
	void Draw( CDC * );
	BOOL PtInButton( CPoint );
	void ExchangeButtonPosition( CPoint );
	void Serialize( CArchive &ar );
	

};

#endif // !defined(AFX_BUTTON_H__74583B41_741D_11D4_825F_60000000105A__INCLUDED_)

⌨️ 快捷键说明

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