2 writes to _strokes
PresentationCore (2)
MS\Internal\Ink\Renderer.cs (2)
212_strokes = new StrokeCollection(); 244_strokes = value;
15 references to _strokes
PresentationCore (15)
MS\Internal\Ink\Renderer.cs (15)
210if ( _strokes == null ) 215_strokes.StrokesChangedInternal += new StrokeCollectionChangedEventHandler(OnStrokesChanged); 218return _strokes; 223if (value == _strokes) 229if (null != _strokes) 232_strokes.StrokesChangedInternal -= new StrokeCollectionChangedEventHandler(OnStrokesChanged); 247foreach (Stroke stroke in _strokes) 262_strokes.StrokesChangedInternal += new StrokeCollectionChangedEventHandler(OnStrokesChanged); 424System.Diagnostics.Debug.Assert(sender == _strokes); 474System.Diagnostics.Debug.Assert(_strokes.IndexOf(sender as Stroke) != -1); 525System.Diagnostics.Debug.Assert(_strokes != null); 559i = Math.Min(_visuals.Count, _strokes.Count); //not -1, we're about to decrement 562if (object.ReferenceEquals(_strokes[i], visualStroke)) 570i = _strokes.IndexOf(visual.Stroke); 574Stroke stroke = _strokes[i];