Beispiel #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     ControlAnimator.StopAnimating(button4);
     ControlAnimator.StopAnimating(textBox1);
     ControlAnimator.StopAnimating(pictureBox1);
     ControlAnimator.StopAnimating(treeView1);
     ControlAnimator.StopAnimating(groupBox3);
     ControlAnimator.StopAnimating(IntPtr.Zero);
 }
 public static void End(Control targetControl)
 {
     try
     {
         ControlAnimator.StopAnimating(targetControl);
     }
     catch (Exception ex)
     {
         Logger.Error("Control Animation Error", ex);
     }
 }