HOW TO:在 Visual Basic 中擷取音效資源
更新:2007 年 11 月
您可以存取 My.Resources 物件上的資源屬性 (Property),以擷取應用程式的音效資源。
My.Resources 物件公開每個資源做為唯讀屬性。屬性名稱與資源名稱相同,而且屬性型別是由資源類別來決定。如需詳細資訊,請參閱 My.Resources 物件。
範例
這個範例會使用 My.Computer.Audio.Play 方法,播放在應用程式資源檔中儲存為 Form1Greeting 的音效資源。
Sub PlayFormGreeting()
My.Computer.Audio.Play(My.Resources.Form1Greeting, _
AudioPlayMode.Background)
End Sub
為了讓這個範例能夠運作,您的應用程式必須在應用程式的資源檔中具有名為 Form1Greeting 的音效資源。如需詳細資訊,請參閱 HOW TO:加入或移除資源。
My.Computer.Audio.Play 方法只適用於 Windows Form 應用程式。如需詳細資訊,請參閱 My.Computer.Audio.Play 方法。
請參閱
工作
HOW TO:在 Visual Basic 中擷取當地語系化資源