Version 4.10.0: Fixed Label Foreground Binding in UWP MapScale.

This commit is contained in:
ClemensF 2018-08-14 23:56:15 +02:00
parent c8773cd551
commit eca9178971

View file

@ -42,7 +42,9 @@ namespace MapControl
line.SetBinding(Shape.StrokeProperty, GetBinding(StrokeProperty, nameof(Stroke)));
line.SetBinding(Shape.StrokeThicknessProperty, GetBinding(StrokeThicknessProperty, nameof(StrokeThickness)));
#if WINDOWS_UWP
label.SetBinding(TextBlock.ForegroundProperty, GetBinding(ForegroundProperty, nameof(Foreground)));
#endif
Children.Add(line);
Children.Add(label);
}