C#快速动画库介绍

Animator for WinForms
作者:Pavel Torgashov (乌克兰人)
他的库都有一个特点:贼快!

效果展示:







贴代码凑字数
引用 using AnimatorNS;
private void DoAnimation()
{ //wait while all animations will be completed
animator1.WaitAllAnimations();
animator1.DefaultAnimation = Animation.ScaleAndRotate; //效果
}
void Button1Click(object sender, EventArgs e)
{
animator1.Hide(pictureBox1); //隐藏
DoAnimation();
}
void Button2Click(object sender, EventArgs e)
{
animator1.Show(pictureBox1); //显示
DoAnimation();
}

以上