国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

Winform LinkLabel控件用法, LinkLabel去掉下劃線的方法

發布時間:2020-08-06 21:51 作者:獨孤劍 閱讀:2687

窗體拖拽LinkLabel控件


窗體載入事件,LinkLabel控件單擊響應事件代碼如下:

using System;
using System.Windows.Forms;

namespace WindowsFormsApp15
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.Load += new System.EventHandler(this.Form1_Load);
            this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.linkLabel1.Text = "百度 Google Bing";

            // 指定字符增加鏈接
            this.linkLabel1.Links.Add(0, 2, "http://www.baidu.com");
            // 指定字符增加鏈接
            this.linkLabel1.Links.Add(3, 6, "http://www.google.com");
            // 去掉下劃線
            linkLabel1.LinkBehavior = LinkBehavior.NeverUnderline;
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            // 方法一跳轉
            this.linkLabel1.Links[linkLabel1.Links.IndexOf(e.Link)].Visited = true;
            string target = (string)e.Link.LinkData;
            if (target != null && target.StartsWith("http://"))
            {
                System.Diagnostics.Process.Start(target);
            }
            else
            {
                MessageBox.Show("Item clicked: " + target);
            }

            // 方法二跳轉, 通用事件
            // System.Diagnostics.Process.Start("http://www.abc.com");
        }
    }
}


運行后效果圖如下:


微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對您有幫助,歡迎給作者打賞

作者最新文章
開發過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨象距離象群約12公里
吉林做網站最低價格,吉林企業網站建設價格低至500元起
守象人直擊云南象群最新動向
網站影響百度蜘蛛抓取量的因素有哪些?為什么我的網站Baidu蜘蛛來的次數少?
企業名片
在線客服