用C#做音频播放器,其中快进功能实现不了!!么回事啊???        private void 快进FToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (this.axWindowsMediaPlayer1.URL.Trim() == "")
            {
                MessageBox.Show(this, "请先选择一个媒体文件后,再执行此功能!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            else
            {
                
                
            axWindowsMediaPlayer1.Ctlcontrols.fastForward ();         //快进 
            }
        }