分类目录

链接

2024 年 5 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

C#窗体淡入淡出

        //淡入         public int state = 0;         private void f2_Load(object sender, EventArgs e)         {             this.Opacity = 0;         }           private void timer1_Tick(object sender, EventArgs e)         {             if (state == 0)             {                 this.Opacity += 0.02;                 if (this.Opacity == 1)                 {                     state = 1;                     timer1.Enabled = false;                 }             }        ...

.NET 暂无评论 阅读(2,371)

C#窗体淡入淡出

//淡入publicint state =0; privatevoid f2_Load(object sender, EventArgs e) {          this.Opacity =0; } privatevoid timer1_Tick(object sender, EventArgs e) { if (state ==0) {          this.Opacity +=0.02;          if (this.Opacity ==1)          {          state =1;          timer1.Enabled =false;          } } else {          this.Opacity = Opacity -0.02;          if (this.Opacity ==0)          {                   Application.ExitThread();          } } ...

.NET 暂无评论 阅读(1,858)