How to add help to window forms

I have a fairly simple Windows Forms application that I would like to add to the Help.

What I had in mind was a simple html page on one page that describes some of the details of the application. I think that I will need to add some kind of browser to the application to display the html page.

I have no other options? Search for offers.

+3
source share
4 answers

You can put the HTML help pages on a disk next to your application. To display the help page, simply launch it and let the default browser take care of this:

string appPath = Assembly.GetEntryAssembly().Location;
string filename = Path.Combine(Path.GetDirectoryName(appPath), "help.htm");
Process.Start(filename);

+4
source

, . ?

, -, .

, , Microsoft Office.

+1

chm , ( html ) XML . , sandcastle, chm / html XML . XML , .xml , , , . Windows. !

0

Source: https://habr.com/ru/post/1713471/


All Articles