Hello,
When using the WPF client, and this text style :
private static readonly GeoColor Black = GeoColor.FromArgb(255, 0, 0, 0);
private static readonly GeoColor White = GeoColor.FromArgb(255, 255, 255, 255);
public static readonly TextStyle DefaultText = TextStyles.CreateSimpleTextStyle("Nummer", "Verdana", 12, DrawingFontStyles.Bold, White, Black, 3);
I have a nice white text with a black halo, and my text is visible no matter the maps in backgrounds.
But when using the same style with the Silverlight client :
private static readonly GeoColor Black = GeoColor.FromArgb(255, 0, 0, 0);
private static readonly GeoColor White = GeoColor.FromArgb(255, 255, 255, 255);
public static readonly TextStyle DefaultText = TextStyles.CreateSimpleTextStyle("Nummer", "Verdana", 12, GeoFontWeight.Bold, Black, White, 3);
My text has no halo effect, and thus it is not really visible on every background.
What can I do to have this halo effect ?
Thanks,
Guillaume.