有一个winform项目,需要借助一个web项目来显示,并且对web做一些操作,决定开始研究一下。
先来最简单的,用webbrowser打开一个网址:
界面上添加一个按钮,一个webbrowser和一个label
using System;
using System.Windows.Forms;
namespace t
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string url = "http://192.168.1.1:6017/Index.aspx";
wb.Navigate(url);
}
private void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (wb.ReadyState == WebBrowserReadyState.Complete)
{
label1.Text = "加载完毕";
}
}
}
}