摘要: using System;using System.Windows.Forms;namespace WindowsFormsApplication2{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Uri address = new Uri(textBox1.Text);//创建uri类型变量,存储浏览网页地址 webBrowser1.Url = address; } pr 阅读全文
posted @ 2012-10-23 21:42 蓬莱仙羽 阅读(156) 评论(0) 推荐(0)