コード例 #1
0
        /// <summary>
        /// Supported players link. Opens a new DocumentationWindow and loads the supported
        /// players page from the livestreamer documenation.
        /// </summary>
        private void linkPlayers_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            DocumentationWindow pluginsWindow = new DocumentationWindow("http://docs.livestreamer.io/players.html");

            pluginsWindow.Text = "Supported players";
            pluginsWindow.Show();
        }
コード例 #2
0
 /// <summary>
 /// Supported plugins link. Opens a new DocumentationWindow and loads the supported 
 /// plugins page from the livestreamer documenation.
 /// </summary>
 private void linkPlugins_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     DocumentationWindow pluginsWindow = new DocumentationWindow("http://docs.livestreamer.io/plugin_matrix.html");
     pluginsWindow.Text = "Supported plugins";
     pluginsWindow.Show();
 }