I want to display graphic file in PictureBox I have:
private void btnLoad_Click(object sender, EventArgs e)
{
if (dgOpenFile.ShowDialog() == DialogResult.OK)
{
Bitmap img = new Bitmap(dgOpenFile.FileName);
picture.Width = img.Height;
picture.Height = img.Height;
g.DrawImage(img, 0f, 0f);
}
}
That's g
private void Form1_Load(object sender, EventArgs e)
{
g = picture.CreateGraphics();
}
But when I move my Form outside the window my picture disappears. How can I prevent that?
Image-Property)? – Bobby Jan 4 '11 at 11:55gcome from? It looks very wrong. – leppie Jan 4 '11 at 11:59gis your problem. Grab the instance from theOnPaintmethod instead. – leppie Jan 4 '11 at 12:04