AIM: Design an application that uses the concept of Dialog Control using C#.Net.
Source Code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog() != DialogResult.Cancel)
MessageBox.Show(openFileDialog1.FileName);
listBox1.Items.Add(openFileDialog1.FileName);
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBox1.Image = Image.FromFile(listBox1.SelectedItem.ToString());
}
private void button2_Click(object sender, EventArgs e)
{
if (listBox1.Items.Count > 0)
{
timer1.Start();
}
else
{
MessageBox.Show("Please Select Address");
}
}
int i = 0;
private void timer1_Tick(object sender, EventArgs e)
{
if (i < listBox1.Items.Count)
{
pictureBox1.Image = Image.FromFile(listBox1.Items[i].ToString());
i++;
}
else
{
i = 0;
}
}
private void Form1_Load(object sender, EventArgs e)
{
timer1.Stop();
}
}
}
Output: