示例#1
0
 static public void Stroke(RoundRectRenderer roundrect, Graphics g, Pen pen)
 {
     using (GraphicsPath path = roundrect.Path)
     {
         g.DrawPath(pen, path);
     }
 }
示例#2
0
 static public void Fill(RoundRectRenderer roundrect, Graphics g, Brush fill1)
 {
     using (GraphicsPath path = roundrect.Path)
     {
         g.FillPath(fill1, path);
     }
 }
 public static void Stroke(RoundRectRenderer roundrect, Graphics g, Pen pen)
 {
     using (GraphicsPath path = roundrect.Path)
     {
         g.DrawPath(pen,path);
     }
 }
 public static void Fill(RoundRectRenderer roundrect, Graphics g, Brush fill1)
 {
     using (GraphicsPath path = roundrect.Path)
     {
         g.FillPath(fill1,path);
     }
 }