Csharp/C Sharp/Development Class/SoundPlayer

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

new SoundPlayer(openDialog.FileName) Play

<source lang="csharp"> using System; using System.Windows.Forms; using System.Media; public class MainClass {

   public static void Main() {
       // Allow the user to choose a  file.
       OpenFileDialog openDialog = new OpenFileDialog();
       openDialog.Filter = "WAV Files|*.wav|All Files|*.*";
       if (DialogResult.OK == openDialog.ShowDialog()) {
           SoundPlayer player = new SoundPlayer(openDialog.FileName);
           try {
               player.Play();
           } catch (Exception) {
               MessageBox.Show("An error occurred while playing media.");
           } finally {
               player.Dispose();
           }
       }
   }

}

</source>