예제 #1
0
        private void BackgroundMakeHelpFile(object sender, DoWorkEventArgs doWorkEventArgs)
        {
            tw = new StringWriter();
            Console.SetOut(tw);
            Data.LoadContentXml(Configuration.Parms.content_xml);
            Data.LoadManualStructure(Configuration.Parms.structure_xml);
            HelpFileBuilder h = new HelpFileBuilder();

            h.GenerateAllContentAsHtml();
        }
예제 #2
0
        public static void BuildHelpFile()
        {
            HelpFileBuilder h = new HelpFileBuilder();

            h.GenerateAllContentAsHtml();
        }