日期:2014-05-17 浏览次数:21114 次
private void FormWelcome_Load(object sender, EventArgs e)
{
this.Opacity = 1;
this.timer1.Interval = 50;
this.timer1.Start();
}
private void timer1_Tick_1(object sender, EventArgs e)
{
this.Opacity -= 0.2;
if (this.Opacity = 0)
{
this.timer1.Stop();
this.Close();
}
}