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