?? aboutform.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 + -