代码改变世界

随笔档案-2011年5月25日

winform中linkLabel的用法小弟拿来分享一下

2011-05-25 11:54 by qinuo, 246 阅读, 收藏,
摘要: private void Form1_Load(object sender, EventArgs e) { this.lnkTest.Text = " baidu Google Yahoo"; this.lnkTest.Links.Add(0, 2, "http://www.baidu.com"); this.lnkTest.Links.Add(3, 6, "http://www.google.com"); } private void lnkTest_LinkClicked(object sender, LinkLabelLinkC 阅读全文