异常信息“XACT could not load the data provided. Make sure you are using the correct version of the XACT tool.”         static public AudioEngine audio;
        static public WaveBank wave;
        static public SoundBank soundBank;        static public Cue[] cue;        /// <summary>
        /// 初始化声音
        /// </summary>
        public static void InitSound()
        {
            checked
            {
                try 
                {
                    audio = new AudioEngine("sounds/chess.xap");
                    wave = new WaveBank(audio, "sounds/Wave Bank.xwb");
                    soundBank = new SoundBank(audio, "sounds/Sound Bank.xsb");
                    cue = new Cue[4];
                }
                catch(ArgumentException e)
                {
                    Console.Write(e.Message+"");
                    throw e;
                    return;
                }
            }
           
        }
执行到  audio = new AudioEngine("sounds/chess.xap");就抛出异常了。
麻烦帮解决下