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

📄 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
{
    /// <summary>
    /// About窗体
    /// </summary>
    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  // 否则从第一个图片开始显示,索引从0开始
            {
                index = 0;            
            }
            // 设置图片框显示的图片   
            picAnimation.Image = ilAnimation.Images[index];
        }

        // 图片框的单击事件处理方法,点击时关闭窗体
        private void picOK_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

⌨️ 快捷键说明

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