Beispiel #1
0
 public void DrawRectangleLine(int lineWidth, int color, float x, float y, float width, float height, DrawLineStyle lineStyle, IDrawEffect[] effects)
 {
     this.m_graphics.DrawRectangle(new Pen(Color.FromArgb(color)), x, y, width, height);
 }
Beispiel #2
0
 public void DrawLine(int width, int color, float x1, float y1, float x2, float y2, DrawLineStyle lineStyle, IDrawEffect[] effects)
 {
     throw new NotImplementedException();
 }