logo search
Учебник_ПОА

Пример23

private void DrawEllipse()

{

System.Drawing.Pen myPen;

myPen = new System.Drawing.Pen(System.Drawing.Color.Red);

System.Drawing.Graphics formGraphics = this.CreateGraphics();

formGraphics.DrawEllipse(myPen, new Rectangle(0,0,200,300));

myPen.Dispose();

formGraphics.Dispose();

}

private void DrawRectangle()

{ System.Drawing.Pen myPen;

myPen = new System.Drawing.Pen(System.Drawing.Color.Red);

System.Drawing.Graphics formGraphics = this.CreateGraphics();

formGraphics.DrawRectangle(myPen, new Rectangle(0,0,200,300));

myPen.Dispose();

formGraphics.Dispose();

}