using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.Link.LinkData.ToString());
}
private void Form1_Load(object sender, EventArgs e)
{
linkLabel1.Text = "烟台大学";
linkLabel1.Links.Add(0,4,"http://www.ytu.edu.cn");
}
}
}
网址的链接
最新推荐文章于 2023-07-17 20:05:05 发布