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