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

📄 circlepro.h

📁 VS2005 MFC 实现的画图程序
💻 H
字号:
#pragma once

#include "GDrawDoc.h"
#include "GDrawView.h"

// CCirclePro 窗体视图

class CCirclePro : public CFormView
{
	DECLARE_DYNCREATE(CCirclePro)

protected:
	CCirclePro();           // 动态创建所使用的受保护的构造函数
	virtual ~CCirclePro();

public:
	enum { IDD = IDD_FORMVIEW };
#ifdef _DEBUG
	virtual void AssertValid() const;
#ifndef _WIN32_WCE
	virtual void Dump(CDumpContext& dc) const;
#endif
#endif

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

	DECLARE_MESSAGE_MAP()
public:
	int m_x;
public:
	int m_y;
public:
	int m_r;
public:
	int m_size;
public:
	afx_msg void OnPaint();
	COLORREF color;
		
	afx_msg void ONBNS();
public:
	afx_msg void OnBnClickedButton1();
public:
	afx_msg void OnBnClickedButton2();
};


⌨️ 快捷键说明

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