ASP.NET 에서 사 운 드 파일 을 자원 에 추가 하고 재생 하 는 방법

이 사례 는 ASP.NET 에서 사 운 드 파일 을 자원 에 추가 하고 재생 하 는 방법 을 보 여 준다.모두 에 게 참고 하도록 공유 하 다.구체 적 으로 다음 과 같다.
1.자원 을 추가 하 는 방법 은 다음 과 같다.

2.Form2.cs 는 다음 과 같다.

//
// Any source code blocks look like this
//
using System.Reflection;
using System.IO;
using System.Resources;
using System.Media;
using System.Diagnostics;
namespace Yournamespace
{
 public partial class Form2 : Form
 {
  public Form2()
  {
   InitializeComponent();
  }
  private void Form2_Load(object sender, EventArgs e)
  {
   Assembly assembly;
   Stream soundStream;
   SoundPlayer sp;
   assembly = Assembly.GetExecutingAssembly();
   sp = new SoundPlayer(assembly.GetManifestResourceStream("Yournamespace.Dreamer.wav"));
   sp.Play(); 
  }
 }
}
/*SoundPlayer sp = new SoundPlayer(global::WindowsApplication1.Properties.Resources.yoursoundfilename); */

본 고 에서 말 한 것 이 여러분 의 asp.net 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기