1 write to bottomRight
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (1)
371this.bottomRight = new Point(topLeft.X + Width, topLeft.Y + Height);
10 references to bottomRight
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (10)
456double initialHeight = this.bottomRight.Y - topLeft.Y; 457double initialWidth = this.bottomRight.X - topLeft.X; 463if (bottomRight.X > absolutePosition.X) 465if ((double.IsNaN(MinWidth) || double.IsInfinity(MinWidth) || bottomRight.X - absolutePosition.X >= MinWidth) && 466(double.IsNaN(MaxWidth) || double.IsInfinity(MaxWidth) || bottomRight.X - absolutePosition.X <= MaxWidth)) 468size.Width = this.bottomRight.X - absolutePosition.X; 482if (bottomRight.Y > absolutePosition.Y) 484if ((double.IsNaN(MinHeight) || double.IsInfinity(MinHeight) || bottomRight.Y - absolutePosition.Y >= MinHeight) && 485(double.IsNaN(MaxHeight) || double.IsInfinity(MaxHeight) || bottomRight.Y - absolutePosition.Y <= MaxHeight)) 487size.Height = this.bottomRight.Y - absolutePosition.Y;