allyc

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年9月5日

摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Text; 7 using System.Windows.Forms; 8 using System.IO; 9 using System.Threading;10 11 namespace MultiThread12 {13 public partial class Form1 : Form14 ... 阅读全文
posted @ 2013-09-05 20:46 allyc 阅读(3281) 评论(0) 推荐(0)

摘要: 1 private void lbllink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 2 { 3 4 //调用IE浏览器5 System.Diagnostics.Process.Start("iexplore.exe", "http://www.google.cn"); 6 7 //调用系统默认的浏览器8 System.Diagnostics.Process.Start( "http://www.g... 阅读全文
posted @ 2013-09-05 16:52 allyc 阅读(976) 评论(0) 推荐(1)