예제 #1
0
 void Animation_AnimationEnd(object sender, LayeredSkin.Animations.AnimationEventArgs e)
 {
     this.Hide();
     qq.isShow        = true;
     qq.Location      = this.Location;
     qq.Animation.Asc = true;
     qq.Animation.AnimationStarted += Animation_AnimationStarted;
     qq.Animation.Start();
 }
예제 #2
0
파일: QQ.cs 프로젝트: zyj0021/WinformSkin
 //QQConfig config;
 void Animation_AnimationEnd(object sender, LayeredSkin.Animations.AnimationEventArgs e)
 {
     if (!isShow)
     {
         this.Hide();
         QQConfig config = new QQConfig(this);
         config.Location = this.Location;
         config.Show();
     }
 }
예제 #3
0
 void Animation_AnimationStarted(object sender, LayeredSkin.Animations.AnimationEventArgs e)
 {
     qq.Show();
     this.Dispose();
 }