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)
329
Debug.Assert(
_activationStack
.Count == 1, "The behavior stack has to contain one behavior.");
635
_activationStack
.Push(newEditingBehavior);
649
_activationStack
.Pop();
1295
Debug.Assert(
_activationStack
.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing.");
1365
if (
_activationStack
.Count > 0 )
1367
EditingBehavior =
_activationStack
.Peek();