コード例 #1
0
 private void Timer_For_Exit_Tick(object sender, EventArgs e)
 {
     if (this.Opacity > 0.0)
     {
         this.Opacity -= 0.2;
     }
     else
     {
         Timer_For_Exit.Stop();
         Application.Exit();
     }
 }
コード例 #2
0
 private void label_Exit_Click(object sender, EventArgs e)
 {
     panelPDF.Dispose();
     Timer_For_Exit.Start();
 }
コード例 #3
0
 private void label_X_Click(object sender, EventArgs e)
 {
     Timer_For_Exit.Start();
 }