private void timer1_Tick_1(object sender, EventArgs e)//登陆窗体渐出。
{
if (this.Opacity < 1)
{
this.Opacity = this.Opacity + 0.1;
}
else
{
this.timer1.Enabled = false;
}
}