Advanced Forum Search Results
-
Good news, the Bing Maps guys are well aware of the issue. I'm pretty excited for this next release now
-
If you remove or limit anything causing redraws then you will limit the effects of this.
I'm really surprised how long it took to find this, I guess people using the MSI control weren't doing very many animations?
-
Well that is going to change since the new Bing Maps control uses the MSI to render the base layers. A tonne of people are going to run into this issue. I'll do a sample and send it to that team to see if they can address the issue.
-
I've had great success using the <HyperlinkButton> control, setting the TargetName="_blank" and setting the NavigateUri property in code. If you know the address before they click the button (eg on control load or after loading some data) then this seems to work perfectly. I get a new window and no popup warnings.
-
I found this problem today when putting a simple ProgressBar with IsIndeterminate = true. The will cause my cpu to go 40-70% even if you then hide the progressbar (Visibility.Collapsed):
<MultiScaleImage Source="GeneratedImages/dzc_output.xml" />
<ProgressBar x:Name="progress" IsIndeterminate="True" ...
-
Perfect, you rock Justin!
Everything now works, as per your post after I dynamically loaded some other controls I do need to manually trigger this but the CPU is back to 0%.
Thanks again!
John.
-
I just applied the March Toolkit Theming ImplicitStyleManager to my application and the CPU sits at 50% constantly.
The application uses the CTP Virtual Earth Control and I'm appling the theme (ExpressionDark) to the layout root container (Grid).
I suspected there maybe a issue with the trying to theme the VE control so I tried appling the ...
-
We just exported a few million tiles for the VE Silverlight control using http://globalmapper.com/
The format seems to be PNG 8bit with no issues on transparent edges. I only noticed they were 8bit when trying to get the filesize down with both PNGGuantlet (4% reduction) and OptiPNG(1.5% reduction). The tiles are 256x256 and average about 45KB ...
-
David, did you at the http://codeplex.com/deepearth project? We have this working and use the proper VE Web Service to get the tiles legitimatly. If you would like an example here is one for OpenStreetMap that is very simple:
using System;
using System.Collections.Generic;
using System.Windows.Media;
namespace Map360Example
{
...
-
Saw your comment on my blog. Yes we have this working and are building a control around this concept on codeplex. Full latest source from:
http://www.codeplex.com/deepearth
John.