ESRI.ArcGIS.Client.Toolkit.MagnifyingGlass.map_RotationChanged C# (CSharp) Méthode

map_RotationChanged() private méthode

private map_RotationChanged ( object sender, System.Windows.DependencyPropertyChangedEventArgs e ) : void
sender object
e System.Windows.DependencyPropertyChangedEventArgs
Résultat void
        private void map_RotationChanged(object sender, DependencyPropertyChangedEventArgs e)
        {
            if (bigMap == null) return;
            bigMap.Rotation = (this.FlowDirection == System.Windows.FlowDirection.LeftToRight) ? (double)e.NewValue : -(double)e.NewValue;
            UpdateMagnifyMapCenter();
        }