Nell'esempio sotto ci sono 2 private void essend solo un'esempio e un copia e incolla ma se volessi crearmi nel primo una variabile letta da esempio d auna textbox e nel secondo andarmela utilizzare come devo impostarli?
spero essere stato abbastanzo chiaro ora
private void BtnBrowseImage_Click(object sender, EventArgs e)
{
OpenFileDialog opf = new OpenFileDialog();
// chose the images type
opf.InitialDirectory = "C:\\Users\\Manu&Angy&Matty\\Desktop\\test";
opf.Filter = "Buone (*.BMP;*.JPG;*.GIF,*.PNG,*.TIFF)|*.BMP;*.JPG;*.GIF;*.PNG;*.TIFF|" +"All files (*.*)|*.*";
if (opf.ShowDialog() == DialogResult.OK)
{
// get the image returned by OpenFileDialog
pictureBox1.Height = 400;
pictureBox1.Width = 400;
pictureBox1.Image = Image.FromFile(opf.FileName);
new Size(100,100);
}
}
private void BtnBrowseImage_Click(object sender, EventArgs e)
{
OpenFileDialog opf = new OpenFileDialog();
// chose the images type
opf.InitialDirectory = "C:\\Users\\Manu&Angy&Matty\\Desktop\\test";
opf.Filter = "Buone (*.BMP;*.JPG;*.GIF,*.PNG,*.TIFF)|*.BMP;*.JPG;*.GIF;*.PNG;*.TIFF|" +"All files (*.*)|*.*";
if (opf.ShowDialog() == DialogResult.OK)
{
// get the image returned by OpenFileDialog
pictureBox1.Height = 400;
pictureBox1.Width = 400;
pictureBox1.Image = Image.FromFile(opf.FileName);
new Size(100,100);
}
}