Hi,
I have a requirement to have the focus on RadMap when the form is loaded.I tried both:
and
But with no luck.I need to use the mouse wheel to move to different areas in the map.This is not working until i click once on the map.The reason i want to avoid clicking on the map is that I am drawing a MapPolygon by combining each click point on the map.
Thanks in advance.
I have a requirement to have the focus on RadMap when the form is loaded.I tried both:
FocusManager.FocusedElement="{Binding ElementName=radMap1}"
private
void
UserControl_Loaded(
object
sender, RoutedEventArgs e)
{
radMap1.Focusable =
true
;
radMap1.Focus();
}
But with no luck.I need to use the mouse wheel to move to different areas in the map.This is not working until i click once on the map.The reason i want to avoid clicking on the map is that I am drawing a MapPolygon by combining each click point on the map.
Thanks in advance.