7 references to PreviousSize
PresentationFramework (3)
src\Framework\System\Windows\FrameworkElement.cs (2)
4810
NotifyPropertyChange(new DependencyPropertyChangedEventArgs(ActualWidthProperty, _actualWidthMetadata, sizeInfo.
PreviousSize
.Width, sizeInfo.NewSize.Width));
4816
NotifyPropertyChange(new DependencyPropertyChangedEventArgs(ActualHeightProperty, _actualHeightMetadata, sizeInfo.
PreviousSize
.Height, sizeInfo.NewSize.Height));
src\Framework\System\Windows\SizeChangedEventArgs.cs (1)
33
_previousSize = info.
PreviousSize
;
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\MiniMap\MiniMapControl.xaml.cs (4)
342
if (sizeInfo.WidthChanged && 0.0 != sizeInfo.
PreviousSize
.Width)
345
this.lookupWindow.Left * (sizeInfo.NewSize.Width / sizeInfo.
PreviousSize
.Width);
347
if (sizeInfo.HeightChanged && 0.0 != sizeInfo.
PreviousSize
.Height)
350
this.lookupWindow.Top * (sizeInfo.NewSize.Height / sizeInfo.
PreviousSize
.Height);