15 references to CompositionStage
PresentationFramework (15)
System\Windows\Documents\TextStore.cs (15)
1294this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1347CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText, true); 1360CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText); 1406this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3637case CompositionStage.StartComposition: 3663case CompositionStage.UpdateComposition: 3723case CompositionStage.EndComposition: 3760if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) || 3761(record.Stage != CompositionStage.EndComposition && handled) || 3781if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate) 3787if (record.Stage == CompositionStage.EndComposition) 4442internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text): 4446internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate) 4456internal CompositionStage Stage 4480private readonly CompositionStage _stage;