0

我已经按照在c#中添加声音的教程进行了操作,但是它无法播放声音,但是没有错误。我能怎么做?

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

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

        private void Form1_Load(object sender, EventArgs e)
        {
            SoundPlayer myPlayer = new SoundPlayer(WindowsFormsApplication2.Properties.Resources.sound1);
            myPlayer.PlayLooping();
        }
    }
}
4

1 回答 1

0

确保您已Form1_Load()分配给 FormLoad事件。我已经输入了你的代码,它工作得很好。

要分配事件,只需查看下图。在此处输入图像描述.

这将确保Form1_Load()在表单加载时调用。

在测试了当您尝试将非 .WAV 文件传递​​给 .WAV 文件时会发生什么之后SoundPlayer,它会产生一个错误:

Error 1 The best overloaded method match for 'System.Media.SoundPlayer.SoundPlayer(string)' has some invalid arguments.

这让我相信代码没有被调用。

于 2013-03-19T16:52:50.147 回答