You can draw diff shapes this way
private void Drwings_Paint(object sender, PaintEventArgs e)
{
//Pen selPen = new Pen(Color.White);
Graphics graphic = this.CreateGraphics();
Pen pen = new Pen(Color.SkyBlue, 5);
//DRAW PIE
e.Graphics.DrawPie(pen, 50, 40, 100, 100, 0, 6);
//DRAW LINE
e.Graphics.DrawLine(pen, 10, 10, 50, 50);
//DRAW RECTANGLE
e.Graphics.DrawRectangle(pen, 10, 10, 300, 300);
}