コード例 #1
0
 private static void OnSymbolFillScaleChanged(GeographicSymbolSeries geoSeries, GeoSymbolFillScale oldValue, GeoSymbolFillScale newValue)
 {
     if (geoSeries == null)
     {
         return;
     }
     if (oldValue != null)
     {
         oldValue.OnDetach(geoSeries);
     }
     if (newValue != null)
     {
         newValue.OnAttach(geoSeries);
     }
 }
コード例 #2
0
 public static void SetSymbolFillScale(DependencyObject target, GeoSymbolFillScale behavior)
 {
     target.SetValue(SymbolFillScaleProperty, behavior);
 }