2 writes to _dynamicRenderer
PresentationFramework (2)
src\Framework\System\Windows\Controls\InkCanvas.cs (2)
174_dynamicRenderer = new DynamicRenderer(); 2072_dynamicRenderer = value;
17 references to _dynamicRenderer
PresentationFramework (17)
src\Framework\System\Windows\Controls\InkCanvas.cs (17)
175_dynamicRenderer.Enabled = false; 176this.StylusPlugIns.Add(_dynamicRenderer); 2052if (!object.ReferenceEquals(value, _dynamicRenderer)) 2056if (_dynamicRenderer != null) 2059previousIndex = this.StylusPlugIns.IndexOf(_dynamicRenderer); 2066if (this.InkPresenter.ContainsAttachedVisual(_dynamicRenderer.RootVisual)) 2068this.InkPresenter.DetachVisuals(_dynamicRenderer.RootVisual); 2074if (_dynamicRenderer != null) //null is acceptable 2077if (!this.StylusPlugIns.Contains(_dynamicRenderer)) 2082this.StylusPlugIns.Insert(previousIndex, _dynamicRenderer); 2086this.StylusPlugIns.Add(_dynamicRenderer); 2091_dynamicRenderer.DrawingAttributes = this.DefaultDrawingAttributes; 2094if (!(this.InkPresenter.ContainsAttachedVisual(_dynamicRenderer.RootVisual)) && 2095_dynamicRenderer.Enabled && 2096_dynamicRenderer.RootVisual != null) 2098this.InkPresenter.AttachVisuals(_dynamicRenderer.RootVisual, this.DefaultDrawingAttributes); 2307return _dynamicRenderer;