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