码迷,mamicode.com
首页 > Windows程序 > 详细

11.WinForm练习--WebBrowser控件使用

时间:2019-05-22 11:03:58      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:com   name   mes   component   names   end   class   --   .text   

namespace _11.WebBrowser使用
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

    private void button1_Click(object sender, EventArgs e)
    {
        //获得输入网址
        string text = textBox1.Text;
        Uri uri = new Uri("http://" + text);
        //将获得网址给WebBrowser
        webBrowser1.Url = uri;
    }
}

}

11.WinForm练习--WebBrowser控件使用

标签:com   name   mes   component   names   end   class   --   .text   

原文地址:https://blog.51cto.com/12679593/2398305

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!