日期:2014-05-18  浏览次数:20858 次

c#中嵌套媒体播放器
怎样在VS中用c#嵌套媒体播放器。。。求高手指教!!!!!

------解决方案--------------------
探讨
什么是3L

------解决方案--------------------

你是想在窗体直接播放音乐嘛?

用这个代码可以实现····

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Media;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
SoundPlayer sd = new SoundPlayer("12.wav");

}
 
}
}