You'll probably want to: 1. Create a Bitmap of the correct size. 2. Make a Graphics object for the Bitmap. 3. Draw on the Graphics object. 4. Display the result. Something like: Bitmap bm = new Bitmap(100, 100); Graphics gr = Graphics.FromImage(bm); gr.DrawEllipse(Pens.Red, 10, 10, 80, 80); pictureBox1.Image = bm; Rod
|