Hello,
The very first build with 453 shows dozen of regressions in my application ... Most of them are linked to refresh issues, I'll check them carrefuly tomorrow.
However, here is a very simple one:
I was using this code with 426 to display a scale bar; it does not longuer work unless I force a refresh (by minimizing+maximizing the application)
private void cmShowScale_ItemClick(object sender, ItemClickEventArgs e)
{
theMap.AdornmentOverlay.Lock.EnterWriteLock();
try
{
theMap.AdornmentOverlay.IsVisible = cmShowScale.Checked;
}
finally
{
theMap.AdornmentOverlay.Lock.ExitWriteLock();
}
theMap.Refresh();
}