Exemplo n.º 1
0
        public void ShowContextHelp(IHelpableObject helpableObject)
        {
            System.Windows.Forms.Help.ShowHelp(
                UserInterfaceServices.PrimaryUIController as Control,
                File.Exists(helpableObject.FileName) ? helpableObject.FileName : CHMFile,
                System.Windows.Forms.HelpNavigator.TopicId,
                helpableObject.HelpTopicID.Value.ToString()
                );

            // Use this to adjust the screen size of the help window
            // UserInterfaceServices.ExecuteInUIFriendlyContext( () => MoveHelpWindow(new Rectangle(0, 0, 300, 200)));
        }
Exemplo n.º 2
0
 public void ShowContextHelp(IHelpableObject helpableObject)
 {
     ShowHelp();
 }
Exemplo n.º 3
0
 public void ShowContextHelp(IHelpableObject helpableObject)
 {
     HelpServices.ShowContextHelp(helpableObject);
 }