示例#1
0
 public void SetFiller(string filename)
 {
     filler = new Filler(points, fillImage: new Bitmap(filename));
 }
示例#2
0
 public void UnSetFiller()
 {
     filler = null;
 }
示例#3
0
 public void SetFiller(Color color)
 {
     filler = new Filler(points, fillColor: color);
 }