about.cs

来自「人事管理系统」· CS 代码 · 共 51 行

CS
51
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace BlueHill_Win_
{
    public partial class About : Form
    {
        public About()
        {
            InitializeComponent();
        }

        private void About_Load(object sender, EventArgs e)
        {
            Win32.AnimateWindow(this.Handle, 2000, Win32.AW_VER_POSITIVE);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
        private void VisitLink()
        {
            linkLabel1.LinkVisited = true;

            System.Diagnostics.Process.Start("http://user.qzone.qq.com/375414451");
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            try
            {
                VisitLink();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString(),"Unable to open link that was clicked.");
            }
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?