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)
317
Debug.Assert(
_activationStack
.Count == 1, "The behavior stack has to contain one behavior.");
622
_activationStack
.Push(newEditingBehavior);
636
_activationStack
.Pop();
1249
Debug.Assert(
_activationStack
.Count <= 1, "The behavior stack has to contain at most one behavior when user is not editing.");
1319
if (
_activationStack
.Count > 0 )
1321
EditingBehavior =
_activationStack
.Peek();