Exemplo n.º 1
0
        public void PlayAllDisks()
        {
            if (!((bool)_watched.Chosen))
            {
                _watched.Chosen = true;
            }

            OMLApplication.ExecuteSafe(delegate
            {
                // Play the Selected Disk
                PlayClicked = true;
                _movieDetails.PlayAllDisks();
                _playClicked = false; // I use the private variable because I don't want to send an event to the MCML page
            });
        }