Hello
ah_jiang_9 wrote:
how can i possibly display graphics object?
There is a Paint event -or a similar event- that you have to handle in your control to draw whatever you want. In it's PaintEventArg.Graphics you can draw your image as you like. Some controls don't fire this event as they draw there own interface. Yet you can inherit from them or customly draw them. This depends on where you want to draw your graphics object
ah_jiang_9 wrote:
i created it from a picturebox and i added something to the picture but i have no idea on how to display it
Why? It's as simple as these three lines: pictureBox1.Image = new Bitmap(pictureBox1.Width, pictureBox1.Height); //Make a new image in the box Graphics g = Graphics.FromImage(pictureBox1.Image); //Make graphics g.DrawLine(Pens.Black, new Point(5, 5), new Point(30, 30)); //Draw Regards:rose: