用Visual Studio写mfc茶壶代码

时间: 2024-03-16 12:43:44 浏览: 21
以下是一个简单的 MFC 茶壶代码,用于在 Visual Studio 中绘制一个简单的茶壶: 1. 创建一个 MFC 应用程序项目。 2. 打开 Class View 窗口,右键单击该项目,然后选择添加->类。 3. 在“添加类”对话框中,选择“MFC”类类别,然后选择“MFC ActiveX 控件”类模板。 4. 在“添加 MFC ActiveX 控件”对话框中,输入“CTeaPot”作为控件类名称,然后选择“框架支持 ActiveX 控件”复选框。 5. 单击“完成”按钮,创建一个新的 MFC ActiveX 控件类。 6. 在“CTeaPot.h”文件中添加以下代码: ```cpp class CTeaPot : public COleControl { DECLARE_DYNCREATE(CTeaPot) // Construction public: CTeaPot(); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CTeaPot) public: virtual void OnDraw(CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid); virtual BOOL PreCreateWindow(CREATESTRUCT& cs); protected: virtual void DoPropExchange(CPropExchange* pPX); virtual void OnResetState(); //}}AFX_VIRTUAL // Implementation protected: ~CTeaPot(); DECLARE_OLECREATE_EX(CTeaPot) // Class factory and guid DECLARE_OLETYPELIB(CTeaPot) // GetTypeInfo DECLARE_PROPPAGEIDS(CTeaPot) // Property page IDs DECLARE_OLECTLTYPE(CTeaPot) // Type name and misc status // Message maps //{{AFX_MSG(CTeaPot) //}}AFX_MSG DECLARE_MESSAGE_MAP() // Dispatch maps //{{AFX_DISPATCH(CTeaPot) afx_msg float GetHeight(); afx_msg void SetHeight(float newVal); afx_msg float GetWidth(); afx_msg void SetWidth(float newVal); //}}AFX_DISPATCH DECLARE_DISPATCH_MAP() // Event maps //{{AFX_EVENT(CTeaPot) //}}AFX_EVENT DECLARE_EVENT_MAP() // Properties public: float m_fHeight; float m_fWidth; }; ``` 7. 在“CTeaPot.cpp”文件中添加以下代码: ```cpp // TeaPot.cpp : Implementation of CTeaPotApp and DLL registration. #include "stdafx.h" #include "TeaPot.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CTeaPotApp BEGIN_MESSAGE_MAP(CTeaPotApp, CWinApp) //{{AFX_MSG_MAP(CTeaPotApp) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTeaPotApp construction CTeaPotApp::CTeaPotApp() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CTeaPotApp object CTeaPotApp theApp; ///////////////////////////////////////////////////////////////////////////// // CTeaPotApp initialization BOOL CTeaPotApp::InitInstance() { AfxEnableControlContainer(); // Standard initialization // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif return TRUE; } ``` 8. 在“CTeaPot.cpp”文件中,添加以下代码来实现绘制茶壶的功能: ```cpp // CTeaPot::OnDraw - Drawing function void CTeaPot::OnDraw(CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid) { // TODO: Replace the following code with your own drawing code. CPen pen(PS_SOLID, 1, RGB(255, 0, 0)); CPen* pOldPen = pdc->SelectObject(&pen); pdc->MoveTo(rcBounds.left, rcBounds.top); pdc->LineTo(rcBounds.right, rcBounds.bottom); pdc->MoveTo(rcBounds.left, rcBounds.bottom); pdc->LineTo(rcBounds.right, rcBounds.top); pdc->SelectObject(pOldPen); } // CTeaPot::PreCreateWindow - Modify parameters for CreateWindowEx BOOL CTeaPot::PreCreateWindow(CREATESTRUCT& cs) { //cs.lpszClass = _T("STATIC"); cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS; return COleControl::PreCreateWindow(cs); } ``` 9. 在“TeaPot.idl”文件中,添加以下代码: ```cpp import "oaidl.idl"; [ uuid(69B182FE-3142-4B7C-8AF7-99FB9E77E705), helpstring("TeaPot 1.0 Control"), control, threading(apartment), vi_progid("TeaPot.TeaPotCtrl.1"), progid("TeaPot.TeaPotCtrl"), version(1.0), helpfile("TeaPot.hlp"), event_source("com") ] interface ITeaPot : IDispatch { [id(1), helpstring("property Height")] float Height; [id(2), helpstring("property Width")] float Width; }; ``` 10. 在“TeaPot.rgs”文件中,添加以下代码: ```cpp HKCR { TeaPot.TeaPotCtrl.1 = s 'TeaPot ActiveX Control' { CLSID = s '{02D5B4F8-7177-4E7B-8B55-5E6D4C02E8D8}' Insertable = s '1' ProgID = s 'TeaPot.TeaPotCtrl.1' VersionIndependentProgID = s 'TeaPot.TeaPotCtrl' DefaultIcon = s '%MODULE%,0' } } HKCR\CLSID { {02D5B4F8-7177-4E7B-8B55-5E6D4C02E8D8} = s 'TeaPot ActiveX Control' { ProgID = s 'TeaPot.TeaPotCtrl.1' VersionIndependentProgID = s 'TeaPot.TeaPotCtrl' Description = s 'TeaPot ActiveX Control' Control = s '' } {F033EFE8-07B1-11D2-A4F8-0000F8756F7A} = s 'TeaPot ActiveX Control' { ProgID = s 'TeaPot.TeaPotCtrl.1' VersionIndependentProgID = s 'TeaPot.TeaPotCtrl' Description = s 'TeaPot ActiveX Control' OleObject = s 'TeaPot.TeaPotCtrl.1' } } HKLM { Software\Classes\TeaPot.TeaPotCtrl.1 = s 'TeaPot ActiveX Control' { CLSID = s '{02D5B4F8-7177-4E7B-8B55-5E6D4C02E8D8}' Insertable = s '1' ProgID = s 'TeaPot.TeaPotCtrl.1' VersionIndependentProgID = s 'TeaPot.TeaPotCtrl' DefaultIcon = s '%MODULE%,0' } } HKLM\Software\Classes\CLSID { {02D5B4F8-7177-4E7B-8B55-5E6D4C02E8D8} = s 'TeaPot ActiveX Control' { ProgID = s 'TeaPot.TeaPotCtrl.1' VersionIndependentProgID = s 'TeaPot.TeaPotCtrl' Description = s 'TeaPot ActiveX Control' Control = s '' } } ``` 11. 编译并运行项目,在窗体设计器中将控件拖放到窗体上,然后在属性窗口中设置控件的高度和宽度属性,即可在窗体上看到绘制的茶壶。

相关推荐

最新推荐

recommend-type

在 Visual Studio 中查看反汇编代码

主要介绍了在 Visual Studio 中查看反汇编代码的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

如何使用visual studio2019创建简单的MFC窗口(使用C++)

主要介绍了如何使用visual studio2019创建简单的MFC窗口(使用C++),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
recommend-type

Visual Studio 2019配置vue项目的图文教程详解

主要介绍了Visual Studio 2019配置vue项目的教程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作,具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

Visual Studio Code安装和配置的教程

主要介绍了Visual Studio Code安装和配置,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

Visual Studio 2019配置qt开发环境的搭建过程

主要介绍了Visual Studio 2019配置qt开发环境的搭建过程,本文图文并茂给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

zigbee-cluster-library-specification

最新的zigbee-cluster-library-specification说明文档。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

实现实时数据湖架构:Kafka与Hive集成

![实现实时数据湖架构:Kafka与Hive集成](https://img-blog.csdnimg.cn/img_convert/10eb2e6972b3b6086286fc64c0b3ee41.jpeg) # 1. 实时数据湖架构概述** 实时数据湖是一种现代数据管理架构,它允许企业以低延迟的方式收集、存储和处理大量数据。与传统数据仓库不同,实时数据湖不依赖于预先定义的模式,而是采用灵活的架构,可以处理各种数据类型和格式。这种架构为企业提供了以下优势: - **实时洞察:**实时数据湖允许企业访问最新的数据,从而做出更明智的决策。 - **数据民主化:**实时数据湖使各种利益相关者都可
recommend-type

可见光定位LED及其供电硬件具体型号,广角镜头和探测器,实验设计具体流程步骤,

1. 可见光定位LED型号:一般可使用5mm或3mm的普通白色LED,也可以选择专门用于定位的LED,例如OSRAM公司的SFH 4715AS或Vishay公司的VLMU3500-385-120。 2. 供电硬件型号:可以使用常见的直流电源供电,也可以选择专门的LED驱动器,例如Meanwell公司的ELG-75-C或ELG-150-C系列。 3. 广角镜头和探测器型号:一般可采用广角透镜和CMOS摄像头或光电二极管探测器,例如Omron公司的B5W-LA或Murata公司的IRS-B210ST01。 4. 实验设计流程步骤: 1)确定实验目的和研究对象,例如车辆或机器人的定位和导航。
recommend-type

JSBSim Reference Manual

JSBSim参考手册,其中包含JSBSim简介,JSBSim配置文件xml的编写语法,编程手册以及一些应用实例等。其中有部分内容还没有写完,估计有生之年很难看到完整版了,但是内容还是很有参考价值的。