Hi,
I'm testing RadMap. I build a window with a radmap and a listbox with locations (based on your samples).
After a few changes in the listbox, the window freezes. I must then stop the process from visual studio.
Bassically, i had a code like this:
 
I tried in debug and in release modes.
I tried with both providers, bing and open.
If I use a 'zoom effect' like in your samples (changing the last line to "ZoomOut();") the freezes occurs after 5-10 changes in the listbox. If I use the showed code, the freezes occurs after 10-50 changes.
Thanks in advance, and excuse me if my english is not good.
                                I'm testing RadMap. I build a window with a radmap and a listbox with locations (based on your samples).
After a few changes in the listbox, the window freezes. I must then stop the process from visual studio.
Bassically, i had a code like this:
private void listBox_SelectionChanged(object sender, SelectionChangedEventArgs e)       {           ListBox lista = sender as ListBox;           if (lista.SelectedItem == null) return;           destino = (Location)lista.SelectedItem;           this.radMap1.Center = destino;       }I tried in debug and in release modes.
I tried with both providers, bing and open.
If I use a 'zoom effect' like in your samples (changing the last line to "ZoomOut();") the freezes occurs after 5-10 changes in the listbox. If I use the showed code, the freezes occurs after 10-50 changes.
Thanks in advance, and excuse me if my english is not good.
