Form1”不包含“属性”表单的定义。
我正在尝试向Windows应用程序中的应用程序添加音乐。我将Music.wav添加到了我的资源中。当我尝试运行代码时,它给了我一个错误。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
SoundPlayer sndPlayer = new SoundPlayer(Form1.Properties.Resources.music);
sndPlayer.Play();
}
catch (Exception ex)
{
MessageBox.Show("Error Message - " + ex.Message);
}
}
}
答案 0 :(得分:0)
感谢约翰!
我需要做的是删除
Form1.Properties.
就是这样