winforms - How to add help to windows forms -
I have a fairly simple Windows application that I want to add 'help'
The mind I was in was a simple one page html page that describes some details about the application. I think I need to add any browser to the application to show the HTML page.
Am I missing other options? In search of suggestions
You can put HTML help pages on the disk next to your application. To display the help page, launch it and take care of it with the default browser:
string appPath = Assembly.GetEntryAssembly (). place; String filename = path. Combine (path gate directory name (epapath), "help HTM"); Process.Start (file name);
Comments
Post a Comment