发布时间:2016-04-17 08:57:02
转载地址:http://blog.csdn.net/maopig/article/details/7530266应用程序框架产生的消息映射函数例如:afx_msg void OnBnClickedButton1(); 其中 afx_msg为消息标志,它向系统声明:有消息映射到函数实现体;而在map宏定义中,就有具体消息和此函数的映射定义(可以是自定义,也可以是系统自动完成的)afx是 applic.........【阅读全文】
发布时间:2016-04-13 19:58:31
When using BitBlt() to convert a monochrome bitmap to a color bitmap, GDI transforms all white bits (1) to the background color of the destination device context (DC). GDI transforms all black bits (0) to the text (or foreground) color of the destination DC. When usin.........【阅读全文】
发布时间:2015-11-12 20:46:59
在此,以按钮控件为例,学习一下控件上文本的设置,主要是几个函数的运用。 CButton类是继承自CWind类的,CWnd类是其基类,而基类中的非私有成员都是可以被继承的。也就是说,CWnd类的成员函数也是可以使用的。通过查看CWnd类的成员函数,可以找到GetDlgItemText、SetDlgI.........【阅读全文】
发布时间:2015-11-08 16:54:06
1、 设备环境(DC) (1)在Windows中,显示工作是基于设备环境的。所谓设备环境(DC)是一种Windows数据结构,该结构包含应用程序设备输出时所需要的信息。 (2)在使用任何绘图函数之前必须建立一个设备环境对象。 (3)在MFC中提供了设备环境类CDC,它封装了绘图所需要的所有.........【阅读全文】