15 references to CompositionStage
PresentationFramework (15)
System\Windows\Documents\TextStore.cs (15)
1308this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1361CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText, true); 1374CompositionEventRecord record = new CompositionEventRecord(CompositionStage.UpdateComposition, _previousCompositionStartOffset, _previousCompositionEndOffset, compositionText); 1420this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3664case CompositionStage.StartComposition: 3690case CompositionStage.UpdateComposition: 3750case CompositionStage.EndComposition: 3787if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) || 3788(record.Stage != CompositionStage.EndComposition && handled) || 3808if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate) 3814if (record.Stage == CompositionStage.EndComposition) 4473internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text): 4477internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate) 4487internal CompositionStage Stage 4511private readonly CompositionStage _stage;