Exemple #1
0
 public void BlinkTab()
 {
     if (!this.IsActive)
     {
         BlinkTabAnimation.Begin();
     }
 }
Exemple #2
0
 public void ActivateTab()
 {
     this.IsActive = true;
     VisualStateManager.GoToState(this, "Active", true);
     BlinkTabAnimation.Stop();
 }
Exemple #3
0
 public void DeactivateTab()
 {
     this.IsActive = false;
     VisualStateManager.GoToState(this, "Normal", true);
     BlinkTabAnimation.Stop();
 }