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

AutoCAD.Net/C#.Net QQ群:193522571 c#链接到网址

时间:2015-11-06 16:15:24      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

    /// <summary>
    /// 链接到当前地址
    /// </summary>
    /// <param name="URL"></param>
    public static void LinkTo(this string URL)
    {
      ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
      startInfo.WindowStyle = ProcessWindowStyle.Maximized;
      startInfo.Arguments = URL;
      Process.Start(startInfo);
    }

 

AutoCAD.Net/C#.Net QQ群:193522571 c#链接到网址

标签:

原文地址:http://www.cnblogs.com/swtool/p/4942712.html

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