在C#写winform程序时,用webBrowser打开网页时
根据我这代码,如何点击里面的导航进入下一个页面,求大神教。感激不尽啊!下面是我的代码。namespaceWindowsFormsApplication148{public...
根据我这代码,如何点击里面的导航进入下一个页面,求大神教。
感激不尽啊!
下面是我的代码。
namespace WindowsFormsApplication148
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text != "")
{
Uri adress = new Uri(textBox1.Text);
webBrowser1.Url = adress;
}
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
if (textBox1.Text != "")
{
button1_Click(sender, e);
}
}
}
}
} 展开
感激不尽啊!
下面是我的代码。
namespace WindowsFormsApplication148
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text != "")
{
Uri adress = new Uri(textBox1.Text);
webBrowser1.Url = adress;
}
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
if (textBox1.Text != "")
{
button1_Click(sender, e);
}
}
}
}
} 展开
2个回答
展开全部
webBrowser1.Navigate("http://www.baidu.com/",false);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询