在GDI编程过程中,我们经常可以见到如下:
对一个dc使用SelectObject,这是做什么呢?
我们先看一下MSDN的解释:
[quote]
The SelectObject function selects an object into the specified device context (DC). The new object replaces the previous object of the same type.[/quote]
这个函数用来设置DC中的某个属性,他用新的值把旧的值替换出去。
它能够设置的值有:
[quote]bitmap,brush,pen,font,region[/quote]
比如,我们 selectobject(Newbrush)
就代表用NewBrush替换原来的brush
当我们使用rectangle函数画方框的时候,他就会使用dc当前的brush和pen进行绘图
也就是说我们刚刚换上的brush就会起到作用。
memDC.CreateCompatibleDC(pDC); //创建与窗体设备环境一样大小DC
memDC.SelectObject(this); //将内存中的DC选择该类的位图对象
NewFont.CreatePointFont(iSize,"宋体"); //创建显示文本的字体
OldFont = memDC.SelectObject(&NewFont); //选择新字体
对一个dc使用SelectObject,这是做什么呢?
我们先看一下MSDN的解释:
[quote]
The SelectObject function selects an object into the specified device context (DC). The new object replaces the previous object of the same type.[/quote]
这个函数用来设置DC中的某个属性,他用新的值把旧的值替换出去。
它能够设置的值有:
[quote]bitmap,brush,pen,font,region[/quote]
比如,我们 selectobject(Newbrush)
就代表用NewBrush替换原来的brush
当我们使用rectangle函数画方框的时候,他就会使用dc当前的brush和pen进行绘图
也就是说我们刚刚换上的brush就会起到作用。