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))); 3655case CompositionStage.StartComposition: 3681case CompositionStage.UpdateComposition: 3741case CompositionStage.EndComposition: 3778if ((record.Stage == CompositionStage.EndComposition && !_handledByTextStoreListener) || 3779(record.Stage != CompositionStage.EndComposition && handled) || 3799if (record.Stage != CompositionStage.EndComposition && !record.IsShiftUpdate) 3805if (record.Stage == CompositionStage.EndComposition) 4460internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text): 4464internal CompositionEventRecord(CompositionStage stage, int startOffsetBefore, int endOffsetBefore, string text, bool isShiftUpdate) 4474internal CompositionStage Stage 4498private readonly CompositionStage _stage;