This question is locked. New answers and comments are not allowed.
I am using Q3 2012 version.
Since upgrading to the new version, when I run the solution from VS, I get binding problems (unhandled exception error) trying to set the SelectionStart and SelectionEnd properties of the PanZoomBar. If I set them directly to a value it runs fine. I have a sample project, but I'm not sure how to attach the .zip file here.
Since upgrading to the new version, when I run the solution from VS, I get binding problems (unhandled exception error) trying to set the SelectionStart and SelectionEnd properties of the PanZoomBar. If I set them directly to a value it runs fine. I have a sample project, but I'm not sure how to attach the .zip file here.
<
UserControl.Resources
>
<
Style
TargetType
=
"telerik:PanZoomBar"
>
<!-- This is not working -->
<!--<
Setter
Property
=
"SelectionStart"
Value
=
"{Binding PanZoomBarSelectionStart, Mode=TwoWay}"
/>
<
Setter
Property
=
"SelectionEnd"
Value
=
"{Binding PanZoomBarSelectionEnd, Mode=TwoWay}"
/>-->
<!-- This works -->
<
Setter
Property
=
"SelectionStart"
Value
=
".2"
/>
<
Setter
Property
=
"SelectionEnd"
Value
=
".85"
/>
</
Style
>
</
UserControl.Resources
>