private void btn_browspass_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter = "image files|*.jpg;*.png;*.gif"; DialogResult dr = ofd.ShowDialog(); if (dr == DialogResult.Cancel) return; pictureBox1.Image = Image.FromFile(ofd.FileName); txt_pass.Text = ofd.FileName; }
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
pictureBox1.SizeMode= System.Windows.Forms.PictureBoxSizeMode.Zoom;
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)