예제 #1
0
파일: ScTabHeader.cs 프로젝트: lypvc/Sc
        public void StartAnim(float step)
        {
            if (scAnim == null)
                return;

            scAnim.Stop();
            stepAnim = new ScStepAnimation(panelView.Location.X, step, scAnim);
            scAnim.Start();
        }
예제 #2
0
 public void StartProgressAnim()
 {
     progressAnim.Stop();
     progressStep = new ScStepAnimation(animProgress, animStep, progressAnim);
     progressAnim.Start();
 }