www.pudn.com > V3D_Viewer_1.01_SourceCode.zip > Help.cs


using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 
 
namespace V3D_Viewer 
{ 
    public partial class Help : Form 
    { 
        public Help() 
        { 
            InitializeComponent(); 
            string exedir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); 
            string weburl = "file://" + (string)exedir + "/Index.html"; 
            webBrowser1.Url=new System.Uri(weburl, System.UriKind.Absolute); 
        } 
    } 
}