Public Sub New()
MyBase.New
Form1 = Me
InitializeComponent()
在InitializeComponent()下面加入初始化組件的代碼
Me.LinkLabel1.Text = "http://www.bianceng.cn" '網址
linklabel1.LinkVisited = True '是否標記已訪問鏈接
linklabel1.LinkColor = color.Black '鏈接色
linklabel1.VisitedLinkColor = color.Blue '已訪問鏈接色
End Sub
下面是linklabel的點擊時觸發的事件
Protected Sub LinkLabel1_LinkClick(ByVal sender As Object, ByVal e As System.EventArgs)
直接訪問linklabel1.text所呈現的網址
system.Diagnostics.Process.Start(linklabel1.Text)
當然你也可以指定與linklabel1.text不同的網址或Email,如:
system.Diagnostics.Process.Start("mailto:[email protected]")