如何:使用平台叫用播放 WAV 檔 (C# 程式設計手冊)
下列 C# 程式碼範例會示範如何在 Windows 作業系統上,使用平台叫用服務播放 WAV 音效檔。
範例
在下面的程式碼中,會使用 DllImport 將 winmm.dll 的 PlaySound 方法進入點匯入為 Form1 PlaySound()。 這是以簡單的 Windows Form 再加上一個按鈕為例。 按一下按鈕,隨即開啟標準的 Windows OpenFileDialog 對話方塊,讓您開啟想要播放的檔案。 選取了 WAV 檔之後,便會使用 winmm.DLL 組件方法的 PlaySound() 方法播放。 如需 winmm.dll 之 PlaySound 方法的詳細資訊,請參閱搭配波形音效檔使用 PlaySound 函式 (英文)。 瀏覽並選取副檔名為 .wav 的檔案,然後按一下 [開啟] 以平台叫用播放 WAV 檔。 文字方塊會顯示所選取檔案的完整路徑。
[開啟檔案] 對話方塊會透過篩選設定,只顯示副檔名為 .wav 的檔案:
dialog1.Filter = "Wav Files (*.wav)|*.wav";
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WinSound
{
public partial class Form1 : Form
{
private TextBox textBox1;
private Button button1;
public Form1() //constructor
{
InitializeComponent();
}
[System.Runtime.InteropServices.DllImport("winmm.DLL", EntryPoint = "PlaySound", SetLastError = true, CharSet = CharSet.Unicode, ThrowOnUnmappableChar = true)]
private static extern bool PlaySound(string szSound, System.IntPtr hMod, PlaySoundFlags flags);
[System.Flags]
public enum PlaySoundFlags : int
{
SND_SYNC = 0x0000,
SND_ASYNC = 0x0001,
SND_NODEFAULT = 0x0002,
SND_LOOP = 0x0008,
SND_NOSTOP = 0x0010,
SND_NOWAIT = 0x00002000,
SND_FILENAME = 0x00020000,
SND_RESOURCE = 0x00040004
}
private void button1_Click (object sender, System.EventArgs e)
{
OpenFileDialog dialog1 = new OpenFileDialog();
dialog1.Title = "Browse to find sound file to play";
dialog1.InitialDirectory = @"c:\";
dialog1.Filter = "Wav Files (*.wav)|*.wav";
dialog1.FilterIndex = 2;
dialog1.RestoreDirectory = true;
if(dialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = dialog1.FileName;
PlaySound (dialog1.FileName, new System.IntPtr(), PlaySoundFlags.SND_SYNC);
}
}
}
}
編譯程式碼
若要編譯程式碼
在 Visual Studio 中建立新的 C# Windows 應用程式專案,並命名為 WinSound。
複製上面的程式碼,將其貼於 Form1.cs 檔的內容中。
複製下列程式碼,然後將其貼在 Form1.Designer.cs 檔的 InitializeComponent() 方法中 (在現有的任何程式碼後)。
this.button1 = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // button1 // this.button1.Location = new System.Drawing.Point(192, 40); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(88, 24); this.button1.TabIndex = 0; this.button1.Text = "Browse"; this.button1.Click += new System.EventHandler(this.button1_Click); // // textBox1 // this.textBox1.Location = new System.Drawing.Point(8, 40); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(168, 20); this.textBox1.TabIndex = 1; this.textBox1.Text = "FIle path"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(5, 13); this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.Add(this.textBox1); this.Controls.Add(this.button1); this.Name = "Form1"; this.Text = "Platform Invoke WinSound C#"; this.ResumeLayout(false); this.PerformLayout();
編譯並執行程式碼。
安全性
如需詳細資訊,請參閱 .NET Framework 安全性 (英文)。