刚说错了
你这样写
private void timer1_Tick(object sender, EventArgs e)
{
if (this.Opacity > 0)
{
this.Opacity -= 0.02;
}
else
{
Application.Exit();
}
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = true;
if (this.Opacity > 0)
{
timer1.Start();
}
else
{
//this.timer1.Enabled = false;
e.Cancel = false;
}
}
曾经有双翅膀,我没用她飞上蓝天,丢锅里炖汤了!