1 write to bounds
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\QuadTree.cs (1)
282this.bounds = bounds;
31 references to bounds
System.Data (31)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\QuadTree.cs (31)
298get { return this.bounds; } 319double w = toInsert.bounds.Width / 2; 324double h = toInsert.bounds.Height / 2; 333Rect topLeft = new Rect(toInsert.bounds.Left, toInsert.bounds.Top, w, h); 334Rect topRight = new Rect(toInsert.bounds.Left + w, toInsert.bounds.Top, w, h); 335Rect bottomLeft = new Rect(toInsert.bounds.Left, toInsert.bounds.Top + h, w, h); 336Rect bottomRight = new Rect(toInsert.bounds.Left + w, toInsert.bounds.Top + h, w, h); 407double w = this.bounds.Width / 2; 408double h = this.bounds.Height / 2; 413Rect topLeft = new Rect(this.bounds.Left, this.bounds.Top, w, h); 414Rect topRight = new Rect(this.bounds.Left + w, this.bounds.Top, w, h); 415Rect bottomLeft = new Rect(this.bounds.Left, this.bounds.Top + h, w, h); 416Rect bottomRight = new Rect(this.bounds.Left + w, this.bounds.Top + h, w, h); 473double w = this.bounds.Width / 2; 474double h = this.bounds.Height / 2; 479Rect topLeft = new Rect(this.bounds.Left, this.bounds.Top, w, h); 480Rect topRight = new Rect(this.bounds.Left + w, this.bounds.Top, w, h); 481Rect bottomLeft = new Rect(this.bounds.Left, this.bounds.Top + h, w, h); 482Rect bottomRight = new Rect(this.bounds.Left + w, this.bounds.Top + h, w, h);