⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aboutform.cs

📁 一个不错的文档
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace MySchool.Login
{
    public partial class AboutForm : Form
    {
        int index = 0;
        public AboutForm()
        {
            InitializeComponent();
        }
        //添加时钟时间
        private void timer_Tick(object sender, EventArgs e)
        {
            if (index < ilAnimation.Images.Count - 1)
            {
                index++;
            }
            else
            {
                index = 0;
            }
           // picAnimation.Image = ilAnimation.Images[index];
        }
        //关闭窗体
        private void picOK_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void label1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

⌨️ 快捷键说明

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