/、、、、、、、、、、、、、、、、、、

解决方案 »

  1.   


    CRgn rgn;
    rgn.CreateRoundRectRgn(rt.left, rt.top, rt.right, rt.bottom, 4, 4);
      

  2.   

    不明白,圆角矩形有现成函数啊。CDC::RoundRect  
    BOOL RoundRect( int x1, int y1, int x2, int y2, int x3, int y3 );BOOL RoundRect( LPCRECT lpRect, POINT point );
      

  3.   

    可以
    C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc这个路径下面的文件夹导入SourceInsight之中,建立索引,然后搜索RoundRect如果没有,你就没办法瞻仰了
      

  4.   

    RoundRect( int x1, int y1, int x2, int y2, int x3, int y3 );
    参数: x1 指定矩形左上角的X逻辑坐标。
      y1 指定矩形左上角的Y逻辑坐标。
      x2 指定矩形右下角的X逻辑坐标。
      y2 指定矩形右下角的Y逻辑坐标。
      x3 用于绘制圆角的椭圆宽度(逻辑单位)。
      y3 用于绘制圆角的椭圆高度(逻辑单位)。