| /* |
| * Created by SharpDevelop. |
| * User: Ronny |
| * Date: 04/06/2008 |
| * Time: 21:09 |
| * |
| */ |
| |
| using System; |
| using System.Collections.Generic; |
| using System.Drawing; |
| using System.Windows.Forms; |
| |
| namespace Image |
| { |
| /// <summary> |
| /// Description of MainForm. |
| /// </summary> |
| public partial class MainForm : Form |
| { |
| public MainForm() |
| { |
| // |
| // The InitializeComponent() call is required for Windows Forms designer support. |
| // |
| InitializeComponent(); |
| } |
| |
| void Button1Click(object sender, EventArgs e) |
| { |
| OpenFileDialog deschide = new OpenFileDialog(); |
| deschide.Filter="Imagini(*.jpg; *.jpeg; *.gif; *.bmp)|*.jpg; *.jpeg; *.gif; *.bmp"; |
| if(deschide.ShowDialog() == DialogResult.OK) { |
| pictureBox1.Image = new Bitmap(deschide.FileName); |
| } |
| } |
| } |
| } |