최대 1 분 소요

기본 사용법.

using System.Media;

private SoundPlayer soundPlayer = null;

this.soundPlayer = new SoundPlayer(filePath);

this.soundPlayer.PlayLooping();

this.soundPlayer.Play();

this.soundPlayer.Stop();

// 절대 루트에 있는 파일을 플레이

using System.Media;

SoundPlayer soundPlayer = new SoundPlayer(“file 절대 루트 /VLC_MULTI_TEST/Crash-Cymbal-1.wav”);

soundPlayer.Play();

음원파일을 rsrc에 넣고 로딩하는 방법.

properties.resources.resx에 파일을 넣고 경로를 잘 넣으면 된다. ^^;

using System.Media;

SoundPlayer soundPlayer = new SoundPlayer(VLC_MULTI_TEST.Properties.Resources.Crash_Cymbal_1);

soundPlayer.Play();

ref

태그:

카테고리:

업데이트: