picturebox 圆角问题背景颜色

自定义控件中有一个picturebox控件,采用绘画方式
public void DrawRoundRect(Graphics g, Pen p, float X, float Y, float width, float height, float radius)
{
System.Drawing.Drawing2D.GraphicsPath gp = new System.Drawing.Drawing2D.GraphicsPath();

        gp.AddLine(X + radius, Y, X + width - (radius * 2), Y);

        gp.AddArc(X + width - (radius * 2), Y, radius * 2, radius * 2, 270, 90);

        gp.AddLine(X + width, Y + radius, X + width, Y + height - (radius * 2));

        gp.AddArc(X + width - (radius * 2), Y + height - (radius * 2), radius * 2, radius * 2, 0, 90);

        gp.AddLine(X + width - (radius * 2), Y + height, X + radius, Y + height);

        gp.AddArc(X, Y + height - (radius * 2), radius * 2, radius * 2, 90, 90);

        gp.AddLine(X, Y + height - (radius * 2), X, Y + radius);

        gp.AddArc(X, Y, radius * 2, radius * 2, 180, 90);

        gp.CloseFigure();

        g.DrawPath(p, gp);
        gp.Dispose();
    }

    填充背景颜色后效果![图片说明](https://img-ask.csdn.net/upload/201609/30/1475222388_149808.png)

    怎么改可以是背景颜色只填充在内部的这个圆角的里面

http://www.itnose.net/detail/65234.html