if (System.IO.File.Exists(txtPic.Text))
{
pictureBox1.ImageLocation = txtPic.Text;
pictureBox1.Load();
}
ปล.อย่าลืมปุ่มซักอัน เพื่อ ภาพด้วยนะครับ
Code (C#)
private void button1_Click(object sender, EventArgs e)
{
// Show the dialog and get result.
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK) // Test result.
{
//เลือกรูปได้แล้ว 5555
}
Console.WriteLine(result); // <-- For debugging use.
}