public void Pause()
 {
     if (_movieHandle >= 0 && !IsPaused)
     {
         AVProQuickTimePlugin.Stop(_movieHandle);
         IsPaused  = true;
         PlayState = PlaybackState.Stopped;
         IsPlaying = false;
     }
 }