效果图:

========================================================================

==================================================================
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 考试系统
{
public partial class splash : Form
{
public splash()
{
InitializeComponent();
}
int i;
private void splash_Load(object sender, EventArgs e)
{
i = 8;
}
private void timer1_Tick(object sender, EventArgs e)
{
i--;
if (i == 0)
this.Close();
}
}
}
825

被折叠的 条评论
为什么被折叠?



