1 instantiation of TextChange
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (1)
221change = new TextChange();
20 references to TextChange
PresentationFramework (20)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1483OnTextChanged(new TextChangedEventArgs(TextChangedEvent, undoAction, new ReadOnlyCollection<TextChange>(e.Changes.Values)));
src\Framework\System\Windows\Controls\TextChangedEventArgs.cs (5)
77public TextChangedEventArgs(RoutedEvent id, UndoAction action, ICollection<TextChange> changes) : base() 100: this(id, action, new ReadOnlyCollection<TextChange>(new List<TextChange>())) 145public ICollection<TextChange> Changes 172private readonly ICollection<TextChange> _changes;
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (14)
36_changes = new SortedList<int, TextChange>(); 168internal SortedList<int, TextChange> Changes 205TextChange change = null; // initialize to satisfy compiler 288TextChange mergedChange = null; 291TextChange prevChange = Changes.Values[curIndex]; 336SortedList<int, TextChange> newChanges = new SortedList<int, TextChange>(Changes.Count); 339TextChange curChange = Changes.Values[curIndex]; 365private void DeleteChangeIfEmpty(TextChange change) 378private bool MergeTextChangeLeft(TextChange oldChange, TextChange newChange, bool isDeletion, int length) 440private void MergeTextChangeRight(TextChange oldChange, TextChange newChange, int offset, int length) 509private SortedList<int, TextChange> _changes;