c#中嵌套媒体播放器
怎样在VS中用c#嵌套媒体播放器。。。求高手指教!!!!!
[解决办法]
[解决办法]
你是想在窗体直接播放音乐嘛?
用这个代码可以实现····
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");
}
}
}