Пример #1
0
        public Form_H2Main()
        {
            InitializeComponent();

            DebugForm.Create();
            Globals.Initialize(this);

            //Create API Test _pages in order

            _pages.Add(Page_Notes.Create());
            _navItems.Add("Introduction");

            _pages.Add(Page_Catalogs.Create());
            _navItems.Add("Catalogs");

            _pages.Add(Page_TOC.Create());
            _navItems.Add("TOC");

            _pages.Add(Page_Keywords.Create());
            _navItems.Add("Keywords");

            _pages.Add(Page_Search.Create());
            _navItems.Add("Search");

            _pages.Add(Page_Topics.Create());
            _navItems.Add("Topics");

            navListBox.DataSource = _navItems;

            //Rest of initialization

            InitOtherPageTabs();
        }
Пример #2
0
        // Constructor
        public Page_Keywords()
        {
            InitializeComponent();
            self = this;

            //Panel for to show HelpTopic results
            resultsPanel = new Panel_HelpTopicResults(splitContainer1.Panel2, DockStyle.Fill);
            UpdateStatus();

            // our oneshot watchTimer
            oneshotTimer = new System.Windows.Forms.Timer();
            oneshotTimer.Interval = 200;
            oneshotTimer.Tick += new EventHandler(oneshotTimer_Tick);

            // Super Tips
            new SuperTip(GetKeywordsTip, "CatalogRead.GetKeywords()",
                "This call returns a list of all visible keywords.",
                "Try typing into the search box (word-wheel).");
        }
Пример #3
0
        // Constructor

        public Page_Keywords()
        {
            InitializeComponent();
            self = this;

            //Panel for to show HelpTopic results
            resultsPanel = new Panel_HelpTopicResults(splitContainer1.Panel2, DockStyle.Fill);
            UpdateStatus();

            // our oneshot watchTimer
            oneshotTimer          = new System.Windows.Forms.Timer();
            oneshotTimer.Interval = 200;
            oneshotTimer.Tick    += new EventHandler(oneshotTimer_Tick);

            // Super Tips
            new SuperTip(GetKeywordsTip, "CatalogRead.GetKeywords()",
                         "This call returns a list of all visible keywords.",
                         "Try typing into the search box (word-wheel).");
        }
Пример #4
0
 internal static Page_Keywords Create()
 {
     self = new Page_Keywords();
     return self;
 }
Пример #5
0
 internal static Page_Keywords Create()
 {
     self = new Page_Keywords();
     return(self);
 }