コード例 #1
0
        private void InitOtherPageTabs()
        {
            // Associate this application with the ms-xhelp:/// protocol
            msxhelpProtocol = new MsxhelpProtocol();

            // About page
            InitAboutPageTab();

            //Store Page
            Page_Store storePage = new Page_Store();

            storePage.Parent = tabPagContentStore;
            storePage.Dock   = DockStyle.Fill;

            //Create MSHX Page
            Page_CreateMSHX mshxPage = new Page_CreateMSHX();

            mshxPage.Parent = tabPageMshx;
            mshxPage.Dock   = DockStyle.Fill;

            //Event Log Page
            eventLogPage        = new Page_EventLog(tabPageEventLog);
            eventLogPage.Parent = tabPageEventLog;
            eventLogPage.Dock   = DockStyle.Fill;

            //Other
            new SuperTip(imageRenderWithVS, "Render with VS",
                         "Topics extracted from a catalog's .mshc help file are not yet rendered for viewing in the browser.",
                         "EG. Links need to be expanded to use the ms-xhelp:/// protocol and point to the correct location in the catalog",
                         "By default we provide a pluggle protocol and code that renders the HTML.",
                         "Check this box to render using the VS rendering code in Microsoft.VisualStudio.Help.dll");
        }
コード例 #2
0
ファイル: Page_CreateMSHX.cs プロジェクト: bencz/OrangeC
        public Page_CreateMSHX()
        {
            InitializeComponent();
            self = this;

            //fill the window with Help Indexer Panel
            helpIndexer = Panel_HelpIndexer.Create();
            helpIndexer.Parent = this.dockPanel;
            helpIndexer.Dock = DockStyle.Fill;
            helpIndexer.BringToFront();
        }
コード例 #3
0
        public Page_CreateMSHX()
        {
            InitializeComponent();
            self = this;

            //fill the window with Help Indexer Panel
            helpIndexer        = Panel_HelpIndexer.Create();
            helpIndexer.Parent = this.dockPanel;
            helpIndexer.Dock   = DockStyle.Fill;
            helpIndexer.BringToFront();
        }
コード例 #4
0
ファイル: Page_CreateMSHX.cs プロジェクト: bencz/OrangeC
 internal static Page_CreateMSHX Create()
 {
     self = new Page_CreateMSHX();
     return self;
 }
コード例 #5
0
 internal static Page_CreateMSHX Create()
 {
     self = new Page_CreateMSHX();
     return(self);
 }
コード例 #6
0
ファイル: Form_H2Main.cs プロジェクト: bencz/OrangeC
        private void InitOtherPageTabs()
        {
            // Associate this application with the ms-xhelp:/// protocol
            msxhelpProtocol = new MsxhelpProtocol();

            // About page
            InitAboutPageTab();

            //Store Page
            Page_Store storePage = new Page_Store();
            storePage.Parent = tabPagContentStore;
            storePage.Dock = DockStyle.Fill;

            //Create MSHX Page
            Page_CreateMSHX mshxPage = new Page_CreateMSHX();
            mshxPage.Parent = tabPageMshx;
            mshxPage.Dock = DockStyle.Fill;

            //Event Log Page
            eventLogPage = new Page_EventLog(tabPageEventLog);
            eventLogPage.Parent = tabPageEventLog;
            eventLogPage.Dock = DockStyle.Fill;

            //Other
            new SuperTip(imageRenderWithVS, "Render with VS",
                "Topics extracted from a catalog's .mshc help file are not yet rendered for viewing in the browser.",
                "EG. Links need to be expanded to use the ms-xhelp:/// protocol and point to the correct location in the catalog",
                "By default we provide a pluggle protocol and code that renders the HTML.",
                "Check this box to render using the VS rendering code in Microsoft.VisualStudio.Help.dll");
        }