예제 #1
0
 public void FillPolygon(D2DPoint[] points, D2DBrush brush)
 {
     D2D.DrawPolygonWithBrush(this.Handle, points, (uint)points.Length, D2DColor.Transparent, 0, D2DDashStyle.Solid, brush.Handle);
 }
예제 #2
0
 public void DrawPolygon(D2DPoint[] points,
                         D2DColor strokeColor, FLOAT strokeWidth, D2DDashStyle dashStyle, D2DBrush fillBrush)
 {
     D2D.DrawPolygonWithBrush(Handle, points, (uint)points.Length, strokeColor, strokeWidth, dashStyle, fillBrush.Handle);
 }