VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > 批处理教程 >
  • C# 教程之C# winform 中linklabel控件

C# winform 中linklabel控件 怎么一点这个控件就可以打开网页,怎么写代码
浏览次数:95次悬赏分:0 | 解决时间:2011-5-20 09:45 | 

最佳答案
private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
{
   try
   {
      VisitLink();
   }
   catch (Exception ex )
   {
      MessageBox.Show("Unable to open link that was clicked.");
   }
}
 
private void VisitLink()
{
   // Change the color of the link text by setting LinkVisited
   // to true.
   linkLabel1.LinkVisited = true;
   //Call the Process.Start method to open the default browser
   //with a URL:
   System.Diagnostics.Process.Start("http://www.microsoft.com");
}
 

相关教程