窗体上有两个标签,其中一个为链接标签,单击该链接可以打开烟大主页;窗体上的两个标签字体宋体,字号16号;单击结束按钮程序即可结束
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
linkLabel1.Links[0].LinkData = "http://www.ytu.edu.cn/index.html/";
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.Link .LinkData .ToString ());
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}