CRect rect;
GetClientRect(rect);
    
// Shrink the rectangle 20 pixels on all sides.
rect.DeflateRect(5, 5);
    
// Draw a rectangle with red top and left sides, and
CClientDC dc(this);
dc.Draw3dRect(rect, RGB(255, 255, 255), RGB(230, 230, 230));
这是一个基于对话框的程序在初始化时候的一段代码,效果我想大家都知道了,我的问题时如何在对话框的周围到突起的得那部分上画上其它颜色或是贴上其它的位图,而中间的部分仍然是对话框的灰色。谢谢!!!