1 write to _activationStack
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
58_activationStack = new Stack<EditingBehavior>(2);
6 references to _activationStack
PresentationFramework (6)
MS\Internal\Ink\EditingCoordinator.cs (6)
317Debug.Assert(_activationStack.Count == 1, "The behavior stack has to contain one behavior."); 622_activationStack.Push(newEditingBehavior); 636_activationStack.Pop(); 1249Debug.Assert(_activationStack.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing."); 1319if ( _activationStack.Count > 0 ) 1321EditingBehavior = _activationStack.Peek();