OdessaGUIProject.HighlightDetailsForm.videoPlayer_InitializationError C# (CSharp) Method

videoPlayer_InitializationError() private method

private videoPlayer_InitializationError ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void videoPlayer_InitializationError(object sender, EventArgs e)
        {
            if (MessageBox.Show("We had trouble loading the video player. Please make sure you have Windows Media Player or QuickTime installed." + Environment.NewLine + Environment.NewLine +
                "Without it, you won't be able to preview your highlights before sharing." + Environment.NewLine + Environment.NewLine +
                "Would you like help on how to install a video player?", "Video player required", MessageBoxButtons.YesNo, MessageBoxIcon.Error)
                == DialogResult.Yes)
            {
                BrowserHelper.LaunchBrowser("http://support.highlighthunter.com/customer/portal/articles/658912-how-to-install-windows-media-player", "installplayer");
            }
        }
HighlightDetailsForm