1 write to MapSource
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\MiniMap\MiniMapControl.xaml.cs (1)
51mapControl.lookupWindowManager.MapSource = mapControl.MapSource;
24 references to MapSource
System.Activities.Presentation (24)
System.Activities.Presentation\System\Activities\Presentation\MiniMap\MiniMapControl.xaml.cs (24)
320get { return (null == MapSource || 0.0 == MapSource.ViewportWidth ? 1.0 : MapSource.ViewportWidth); } 325get { return (null == MapSource || 0.0 == MapSource.ViewportHeight ? 1.0 : MapSource.ViewportHeight); } 391if (null != MapSource && 0 != this.lookupWindow.Width && 0 != this.lookupWindow.Height) 393MapSource.ScrollToHorizontalOffset((left / this.lookupWindow.Width) * VisibleSourceWidth); 394MapSource.ScrollToVerticalOffset((top / this.lookupWindow.Height) * VisibleSourceHeight); 404if (!this.lookupWindow.IsSelected && null != MapSource) 408this.lookupWindow.Width * (MapSource.HorizontalOffset / VisibleSourceWidth); 411this.lookupWindow.Height * (MapSource.VerticalOffset / VisibleSourceHeight); 441if (this.MapSource.ScrollableWidth != 0 && this.MapSource.ExtentWidth != 0) 443width = (this.MapSource.ViewportWidth / this.MapSource.ExtentWidth) * this.MapWidth; 449if (this.MapSource.ScrollableHeight != 0 && this.MapSource.ExtentHeight != 0) 451height = (this.MapSource.ViewportHeight / this.MapSource.ExtentHeight) * this.MapHeight; 463if (this.MapSource.ExtentWidth != 0 && this.MapSource.ExtentHeight != 0) 466double widthToHeightRatio = this.MapSource.ExtentWidth / this.MapSource.ExtentHeight;