15 references to CompositionStage
PresentationFramework (15)
System\Windows\Documents\TextStore.cs (15)
1293this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText));
1346CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText, true);
1359CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText);
1405this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end)));
3636case CompositionStage.StartComposition:
3662case CompositionStage.UpdateComposition:
3722case CompositionStage.EndComposition:
3759if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) ||
3760(record.Stage != CompositionStage.EndComposition && handled) ||
3780if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate)
3786if (record.Stage == CompositionStage.EndComposition)
4441internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text):
4445internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate)
4455internal CompositionStage Stage
4479private readonly CompositionStage _stage;