1 write to content
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationAdorner.cs (1)
48this.content = value;
12 references to content
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationAdorner.cs (12)
36return this.content; 41if (this.content != value) 43if (this.content != null) 45this.RemoveVisualChild(this.content); 49if (this.content != null) 51this.AddVisualChild(this.content); 126this.content.Measure(constraint); 127return this.content.DesiredSize; 140Size adornerSize = new Size(this.content.DesiredSize.Width * zoomLevel, this.content.DesiredSize.Height * zoomLevel); 145Point location = CalculateLocation(anchor, this.AdornedElement.RenderSize, this.content.DesiredSize); 147this.content.Arrange(new Rect(location, finalSize));