Esempio n. 1
0
        private void Browser_Load(object sender, System.EventArgs e)
        {
            hc.Size = this.ClientSize;

            if (!Path.IsPathRooted(navigateTo))
            {
                string currPath = AppDomain.CurrentDomain.BaseDirectory;
                hc.Navigate("file:///" + currPath + navigateTo);
            }
            else
            {
                hc.Navigate("file:///" + navigateTo);
            }

            hc.Show();
        }
Esempio n. 2
0
        private void Browser_Load(object sender, System.EventArgs e)
        {
            hc.Size = this.Size;
            string currPath = AppDomain.CurrentDomain.BaseDirectory;

            hc.Navigate("file:///" + navigateTo);
            hc.Show();
        }
Esempio n. 3
0
 private void button1_Click(object sender, EventArgs e)
 {
     htmlControl1.Navigate(textUrl.Text);
 }
Esempio n. 4
0
 private void buttonExit_Click(object sender, EventArgs e)
 {
     html.Navigate("https://www.bing.com");
 }