private void mp3Cal()
{
Player.URL = filedialog.FileName;
Player.Ctlcontrols.play();

}

private void timer1_Tick(object sender, EventArgs e)
{
Thread th1 = new Thread(new ThreadStart(SlideGosteriBaslat));
Thread th2 = new Thread(new ThreadStart(mp3Cal));

th2.Start();
th1.Start();



}