1 write to _activationStack
PresentationFramework (1)
src\Framework\MS\Internal\Ink\EditingCoordinator.cs (1)
66_activationStack = new Stack<EditingBehavior>(2);
6 references to _activationStack
PresentationFramework (6)
src\Framework\MS\Internal\Ink\EditingCoordinator.cs (6)
329Debug.Assert(_activationStack.Count == 1, "The behavior stack has to contain one behavior."); 635_activationStack.Push(newEditingBehavior); 649_activationStack.Pop(); 1295Debug.Assert(_activationStack.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing."); 1365if ( _activationStack.Count > 0 ) 1367EditingBehavior = _activationStack.Peek();