7 references to PreviousSize
PresentationFramework (3)
src\Framework\System\Windows\FrameworkElement.cs (2)
4810NotifyPropertyChange(new DependencyPropertyChangedEventArgs(ActualWidthProperty, _actualWidthMetadata, sizeInfo.PreviousSize.Width, sizeInfo.NewSize.Width)); 4816NotifyPropertyChange(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)
342if (sizeInfo.WidthChanged && 0.0 != sizeInfo.PreviousSize.Width) 345this.lookupWindow.Left * (sizeInfo.NewSize.Width / sizeInfo.PreviousSize.Width); 347if (sizeInfo.HeightChanged && 0.0 != sizeInfo.PreviousSize.Height) 350this.lookupWindow.Top * (sizeInfo.NewSize.Height / sizeInfo.PreviousSize.Height);