共用方式為


HOW TO:使用平台叫用播放 WAV 檔 (裝置)

更新:2007 年 11 月

下列程式碼範例將說明如何使用平台叫用 (PInvoke),在行動裝置上播放聲音音效檔。

範例

此範例程式碼使用 PlaySound 在行動裝置上播放音效檔。此程式碼會使用 System.Runtime.InteropServices 叫用 Compact Framework 之 CoreDll.DLL 的 PlaySound 方法。

using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;

namespace MobileSoundPInvoke
{
    public class Form1 : System.Windows.Forms.Form
    {
        private System.Windows.Forms.MainMenu mainMenu1;

        public Form1()
        {
            InitializeComponent();
            PlaySound(".\\sound.wav");
        }

        #region Windows Form Designer generated code
        private void InitializeComponent()
        {
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.Menu = this.mainMenu1;

            this.Text = "Form1";
        }

        #endregion
        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);
        }
        static void Main()
        {
            Application.Run(new Form1());
        }
        private enum Flags
        {
            SND_SYNC = 0x0000,
            SND_ASYNC = 0x0001,
            SND_NODEFAULT = 0x0002,
            SND_MEMORY = 0x0004,
            SND_LOOP = 0x0008,
            SND_NOSTOP = 0x0010,
            SND_NOWAIT = 0x00002000,
            SND_ALIAS = 0x00010000,
            SND_ALIAS_ID = 0x00110000,
            SND_FILENAME = 0x00020000,
            SND_RESOURCE = 0x00040004
        }

        [DllImport("CoreDll.DLL", EntryPoint = "PlaySound", SetLastError = true)]
        private extern static int MobilePlaySound(string szSound, IntPtr hMod, int flags);

        public void PlaySound(string fileName)
        {
            MobilePlaySound(fileName, IntPtr.Zero, (int)(Flags.SND_ASYNC | Flags.SND_FILENAME));
        }

    }
}

編譯程式碼

  • 在 Visual Studio 中建立新的 C# Smartphone 應用程式專案,並將專案稱為 MobileSoundPInvoke。

  • 複製以上範例中的程式碼,並將之貼上主控台應用程式中 MobileSoundPInvoke 專案的 Form1.cs 檔。

穩固程式設計

  • 務必要將適當的參數傳遞至 CMobilePlaySound (string szSound, IntPtr hMod, int flags) 函式,其中包括 .wav 檔案的路徑和檔名。

安全性

如需安全性的詳細資訊,請參閱 .NET Framework 安全性 (英文)。

請參閱

工作

平台叫用技術範例

概念

智慧型裝置範例

智慧型裝置開發中的 [如何?]

其他資源

在 C++ 中使用明確的 PInvoke (DllImport 屬性)