예제 #1
0
        public bool Pause()
        {
            if (_vlcMediaPlayer.IsPausable() && _vlcMediaPlayer.IsPlaying())
            {
                _vlcMediaPlayer.Pause();
                return(true);
            }

            return(false);
        }