1 write to _activationStack
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
42_activationStack = new Stack<EditingBehavior>(2);
6 references to _activationStack
PresentationFramework (6)
MS\Internal\Ink\EditingCoordinator.cs (6)
301Debug.Assert(_activationStack.Count == 1, "The behavior stack has to contain one behavior."); 603_activationStack.Push(newEditingBehavior); 617_activationStack.Pop(); 1224Debug.Assert(_activationStack.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing."); 1294if ( _activationStack.Count > 0 ) 1296EditingBehavior = _activationStack.Peek();