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)
301
Debug.Assert(
_activationStack
.Count == 1, "The behavior stack has to contain one behavior.");
603
_activationStack
.Push(newEditingBehavior);
617
_activationStack
.Pop();
1224
Debug.Assert(
_activationStack
.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing.");
1294
if (
_activationStack
.Count > 0 )
1296
EditingBehavior =
_activationStack
.Peek();