C#中网页版的帮助怎么添加?
我做的软件中,用html格式的网页做了个帮助功能,放到该软件的根目录下了,怎么做才能点击一个按钮让它弹出呢?
string ch=Environment.CurrentDirectory;//获取软件根目录
string ch1;
ch1 = "";
ch1 += ch + "\\help\\index.html";
System.Diagnostics.Process.Start(ch1);