Example #1
0
        private void OnReportBugClicked(object sender, RibbonControlEventArgs e)
        {
            ExternalLink link = new ExternalLink(Resources.LINK_SUBMIT_BUG);

            link.Open();
        }
Example #2
0
        private void OnViewGitHubClicked(object sender, RibbonControlEventArgs e)
        {
            ExternalLink link = new ExternalLink(Resources.LINK_PROJECT_PAGE);

            link.Open();
        }
Example #3
0
        private void OnHelpClicked(object sender, RibbonControlEventArgs e)
        {
            ExternalLink link = new ExternalLink(Resources.LINK_HELP);

            link.Open();
        }