Hi, im drawing in a Panel graphics but i dont know how to scroll it when graphics are bigger, how can i do that?

my proyect its something like a paint

thanks :D

Recommended Answers

All 2 Replies

Some code would be higly appreciated. If you could put this code into code tags and add a little more explanation that would be heaven!

Hi again, for example i have a panel in my form with size (300,200) and i draw a bigger oval on it, how can i put a scroll to see the complete oval?, sorry for my bad english =:)

private void panel1_Paint(object sender, PaintEventArgs e)
        {
            e.Graphics.DrawEllipse(new Pen(new SolidBrush(Color.Black)), new Rectangle(100, 100, 300, 300));
        }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.