This question is locked. New answers and comments are not allowed.
I am using the latest version (SL4) telerik v2010.2.924.1040. Given two radwindows with each a radmap.
To perform crash , start the app, then drag map in left radwindow.
(no click on map or on window, just start drag, if it does not crash, try a few times drag in left, drag in right.)
Attached screenshot of crash.
What am i doing wrong?
The mainpage:
I guess it has something to do with the focus...
Thanks.
Henri
To perform crash , start the app, then drag map in left radwindow.
(no click on map or on window, just start drag, if it does not crash, try a few times drag in left, drag in right.)
Attached screenshot of crash.
What am i doing wrong?
The mainpage:
<Grid x:Name="LayoutRoot"> <telerik:RadWindow x:Name="w1" Width="320" Height="320" > <Controls:RadMap x:Name="map1" ZoomLevel="4" ></Controls:RadMap> </telerik:RadWindow> <telerik:RadWindow x:Name="w2" Width="320" Height="320" Left="330"> <Controls:RadMap x:Name="map2" ZoomLevel="4" ></Controls:RadMap> </telerik:RadWindow> </Grid>and codebehind
public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); this.Loaded +=new RoutedEventHandler(MainPage_Loaded); } void MainPage_Loaded(object sender, RoutedEventArgs e) { map1.Provider = new OpenStreetMapProvider(); map1.Center = new Location(0.0, 0.0); map2.Provider = new OpenStreetMapProvider(); map2.Center = new Location(0.0, 0.0); w1.Show(); w2.Show(); } I guess it has something to do with the focus...
Thanks.
Henri