VC #.Net te SoundPlayer Kullanımı
Bu örnekte SoundPlayer kullanımını inceleyeceğiz. İlk önce using System.Media;
ekleyin. Formunuza 1 adet openFileDialog, 4 Button ve 1 label ekleyin. Bu örnektw *.wav uzantılı ses dosyalarını çalacağız.
Aşağıdaki Şekili inceleyin...Bahadirsa
Şekil 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Media;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnAc_Click(object sender, EventArgs e)
{
label1.Text = "";
openFileDialog1.Filter = ".wav dosyaları|*.wav|Tüm Dosyalar|*.*";
openFileDialog1.ShowDialog();
label1.Text = openFileDialog1.FileName;
}
private void btnCal_Click(object sender, EventArgs e)
{
if (label1.Text != "" && label1.Text.ToLower().IndexOf(".wav") > 0)
{
SoundPlayer sp = new SoundPlayer();
sp.SoundLocation = label1.Text;
sp.Play();
}
}
private void btnDurdur_Click(object sender, EventArgs e)
{
SoundPlayer sp = new SoundPlayer();
sp.Stop();
}
private void btnLoop_Click(object sender, EventArgs e)
{
if (label1.Text != "" && label1.Text.ToLower().IndexOf(".wav") > 0)
{
SoundPlayer sp = new SoundPlayer();
sp.SoundLocation = label1.Text;
sp.PlayLooping();
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
Bir sonraki makalede buluşmak üzere...Bahadirsa