Example #1
0
        public void Execute(object parameter)
        {
            var dia = new HelpDialog(path);

            // only show dialog if window is valid (help page was found)
            if (dia.IsValid)
            {
                dia.Show();
            }
        }
Example #2
0
 public void ShowHelpWindow()
 {
     HelpWindow.Show();
 }
Example #3
0
 private void LaunchHelp(object sender, System.Windows.RoutedEventArgs e)
 {
     QuickHelp.HelpDialog hd = new HelpDialog(_ParseTreeNode.HelpFile, _ParseTreeNode.DisplayName, _ParseTreeNode.GetType().Assembly.FullName, _ParseTreeNode.GetType().Namespace);
     hd.Show();
 }