업데이트: 2007년 11월
다음 코드 예제에서는 URL에서 소리를 비동기적으로 로드한 다음 새 스레드에서 재생합니다.
Imports System Imports System.Media Imports System.Windows.Forms Public Class Form1 Inherits System.Windows.Forms.Form Friend WithEvents playSoundButton As System.Windows.Forms.Button Private WithEvents Player As New SoundPlayer Sub New() Me.InitializeComponent() End Sub Private Sub playSoundButton_Click( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles playSoundButton.Click ' Replace this file name with a valid file name. Me.Player.SoundLocation = "http://www.tailspintoys.com/sounds/stop.wav" Me.Player.LoadAsync() End Sub Private Sub Player_LoadCompleted( _ ByVal sender As Object, _ ByVal e As _ System.ComponentModel.AsyncCompletedEventArgs) _ Handles Player.LoadCompleted If Me.Player.IsLoadCompleted Then Me.Player.Play() End If End Sub 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. <System.Diagnostics.DebuggerStepThrough()> _ Private Sub InitializeComponent() Me.playSoundButton = New System.Windows.Forms.Button Me.SuspendLayout() ' 'playSoundButton ' Me.playSoundButton.Location = New System.Drawing.Point(105, 107) Me.playSoundButton.Name = "playSoundButton" Me.playSoundButton.Size = New System.Drawing.Size(75, 23) Me.playSoundButton.TabIndex = 0 Me.playSoundButton.Text = "Play Sound" Me.playSoundButton.UseVisualStyleBackColor = True ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(292, 273) Me.Controls.Add(Me.playSoundButton) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) End Sub <STAThread()> _ Shared Sub Main() Application.EnableVisualStyles() Application.Run(New Form1()) End Sub End Class
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Media; using System.Windows.Forms; namespace SoundPlayerLoadAsyncExample { public class Form1 : Form { private SoundPlayer Player = new SoundPlayer(); public Form1() { InitializeComponent(); this.Player.LoadCompleted += new AsyncCompletedEventHandler(Player_LoadCompleted); } private void playSoundButton_Click(object sender, EventArgs e) { this.LoadAsyncSound(); } public void LoadAsyncSound() { try { // Replace this file name with a valid file name. this.Player.SoundLocation = "http://www.tailspintoys.com/sounds/stop.wav"; this.Player.LoadAsync(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Error loading sound"); } } // This is the event handler for the LoadCompleted event. void Player_LoadCompleted(object sender, AsyncCompletedEventArgs e) { if (Player.IsLoadCompleted) { try { this.Player.Play(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Error playing sound"); } } } private Button playSoundButton; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.playSoundButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // playSoundButton // this.playSoundButton.Location = new System.Drawing.Point(106, 112); this.playSoundButton.Name = "playSoundButton"; this.playSoundButton.Size = new System.Drawing.Size(75, 23); this.playSoundButton.TabIndex = 0; this.playSoundButton.Text = "Play Sound"; this.playSoundButton.Click += new System.EventHandler(this.playSoundButton_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.playSoundButton); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion } static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.Run(new Form1()); } } }
이 예제에는 다음 사항이 필요합니다.
-
System 및 System.Windows.Forms 어셈블리에 대한 참조
-
파일 이름 "http://www.tailspintoys.com/sounds/stop.wav"를 올바른 파일 이름으로 바꿈
Visual Basic 또는 Visual C#의 명령줄에서 이 예제를 빌드하는 방법에 대한 자세한 내용은 명령줄에서 빌드(Visual Basic) 또는 csc.exe를 사용한 명령줄 빌드를 참조하십시오. Visual Studio에서 코드를 새 프로젝트에 붙여넣어 이 예제를 빌드할 수도 있습니다. 자세한 내용은 다음을 참조하십시오. 방법: Visual Studio를 사용하여 전체 Windows Forms 코드 예제 컴파일 및 실행.
파일 작업은 적절한 예외 처리 블록 내에 있어야 합니다.
다음 조건에서 예외가 발생할 수 있습니다.
-
경로 이름의 형식이 잘못된 경우. 예를 들어, 파일 이름에 잘못된 문자가 포함되어 있거나 파일 이름이 공백인 경우(ArgumentException 클래스)
-
경로가 읽기 전용인 경우(IOException 클래스)
-
경로 이름이 Nothing인 경우(ArgumentNullException 클래스)
-
경로 이름이 너무 긴 경우(PathTooLongException 클래스)
-
경로가 잘못된 경우(DirectoryNotFoundException 클래스)
-
경로가 콜론 ":"인 경우(NotSupportedException 클래스)
'.NET' 카테고리의 다른 글
System.Web.HttpUtility 가 안보여?? 인텔리센스(Intellisense)가 망가졌나?? ㅋㅋ (0) | 2009.07.06 |
---|---|
자바 스크립트 스크립트 메니져 (0) | 2009.05.19 |
Enumerator 예제 (0) | 2009.04.28 |
C#으로 만드는 자바 스크립트, Script# C (0) | 2009.04.13 |
제네릭 Generic 장점 (0) | 2009.03.03 |
닷넷 프로그래밍 최적화 기법 StringBuilder의 사용 DataReader의 활용 DataTableReader SqlBulkCopy의 활용 ASP.NET의 성능 개선 웹 서비스의 데이터 압축 (0) | 2009.02.04 |
파일 쓰기 FileStream | WinForm Program 설정 파일 검색 txt 검색 CanSeek 프로퍼티, Position 프로퍼티, Seek 메서드 (0) | 2009.01.16 |
C# Enumerator 인터페이스, 반복기 일반화 using System.Collections.Generic.IEnumerator <T> GetEnumerator() 관련 예제 (0) | 2008.12.26 |