示例#1
0
        public void Play(ImcFile imc, int start, int end)
        {
            this.Stop();

            this.player.Stream = imc.RetrieveWaveStream(start, end);
            this.Length = (double)(end - start) / imc.SampleRate;
            this.StreamName = imc.Name;

            this.player.Play();
            this.timer.Start();
        }