I have an MVVM application
View contain:
<telerik:InformationLayer x:Name="informationLayer" > |
<Border |
telerik:MapLayer.Location="{Binding Path=LocationData.CurrentLocation}" |
Background="#00FFFFFF">..... |
ViewModel contain:
public Location CurrentLocation |
{ |
get |
{ |
return panel.CurrentLocation; |
} |
private set |
{ |
panel.CurrentLocation = value; |
OnPropertyChanged("CurrentLocation"); |
} |
} |
If i start app and change CurrentLocation value binding works normally,
but if before it move map bindnig dies..
???
PS work with RadControls for WPF 2010 1 0422