15 references to CompositionStage
PresentationFramework (15)
System\Windows\Documents\TextStore.cs (15)
1297this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText));
1350CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText, true);
1363CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText);
1409this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end)));
3646case CompositionStage.StartComposition:
3672case CompositionStage.UpdateComposition:
3732case CompositionStage.EndComposition:
3769if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) ||
3770(record.Stage != CompositionStage.EndComposition && handled) ||
3790if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate)
3796if (record.Stage == CompositionStage.EndComposition)
4451internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text):
4455internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate)
4465internal CompositionStage Stage
4489private readonly CompositionStage _stage;