2 writes to _strokes
PresentationCore (2)
MS\Internal\Ink\Renderer.cs (2)
213_strokes = new StrokeCollection(); 245_strokes = value;
15 references to _strokes
PresentationCore (15)
MS\Internal\Ink\Renderer.cs (15)
211if ( _strokes == null ) 216_strokes.StrokesChangedInternal += new StrokeCollectionChangedEventHandler(OnStrokesChanged); 219return _strokes; 224if (value == _strokes) 230if (null != _strokes) 233_strokes.StrokesChangedInternal -= new StrokeCollectionChangedEventHandler(OnStrokesChanged); 248foreach (Stroke stroke in _strokes) 263_strokes.StrokesChangedInternal += new StrokeCollectionChangedEventHandler(OnStrokesChanged); 425System.Diagnostics.Debug.Assert(sender == _strokes); 475System.Diagnostics.Debug.Assert(_strokes.IndexOf(sender as Stroke) != -1); 526System.Diagnostics.Debug.Assert(_strokes != null); 560i = Math.Min(_visuals.Count, _strokes.Count); //not -1, we're about to decrement 563if (object.ReferenceEquals(_strokes[i], visualStroke)) 571i = _strokes.IndexOf(visual.Stroke); 575Stroke stroke = _strokes[i];