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))); 3627case CompositionStage.StartComposition: 3653case CompositionStage.UpdateComposition: 3713case CompositionStage.EndComposition: 3750if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) || 3751(record.Stage != CompositionStage.EndComposition && handled) || 3771if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate) 3777if (record.Stage == CompositionStage.EndComposition) 4432internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text): 4436internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate) 4446internal CompositionStage Stage 4470private readonly CompositionStage _stage;