public VisualTipWindow()
 {
     Buffer = new Skybound.Windows.Forms.BufferedGraphics();
     SetStyle(System.Windows.Forms.ControlStyles.UserPaint | System.Windows.Forms.ControlStyles.AllPaintingInWmPaint | System.Windows.Forms.ControlStyles.DoubleBuffer, true);
     StartPosition                = System.Windows.Forms.FormStartPosition.Manual;
     FormBorderStyle              = System.Windows.Forms.FormBorderStyle.None;
     ShowInTaskbar                = false;
     Animator                     = new Skybound.Windows.Forms.Animator(Skybound.Windows.Forms.Motion.Decelerate, 200);
     Animator.NextFrame          += new System.EventHandler(Animator_NextFrame);
     Animator.SynchronizingObject = this;
 }
 public VisualTipWindow()
 {
     Buffer = new Skybound.Windows.Forms.BufferedGraphics();
     SetStyle(System.Windows.Forms.ControlStyles.UserPaint | System.Windows.Forms.ControlStyles.AllPaintingInWmPaint | System.Windows.Forms.ControlStyles.DoubleBuffer, true);
     StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     ShowInTaskbar = false;
     Animator = new Skybound.Windows.Forms.Animator(Skybound.Windows.Forms.Motion.Decelerate, 200);
     Animator.NextFrame += new System.EventHandler(Animator_NextFrame);
     Animator.SynchronizingObject = this;
 }