Hi
After upgrade to version - WPF_Q3_2012_SP1 ,I got 2 regression that i can't fix , Any help appreciate:
1) The size of the slider becomes very big , when i use MaxWidth , the slider cut some of the text i used (i see only 2 value instead of 4 ),
When i define width on each text content the text still big because the slider spaces between each text stay on same size , only the text got the limit .
Any idea how to fix this issue ?
2) The combination of telerik:RadSlider.TickTemplate + label with test + Value="{Binding Path=ScopeSlider, Mode=TwoWay}"
Stop working when i try to initialize the slider with different value .
It's start always from begining
works on win 7 + vs2010
Oren
<telerik:RadSlider x:Uid="Scope" x:Name="Scope" <br> Value="{Binding Path=ScopeSlider, Mode=TwoWay}" Grid.Column="1" Maximum="{Binding Path=MaxScopeZeroIndex}" TickFrequency="1" IsMoveToPointEnabled="true" IsSnapToTickEnabled="True" TickPlacement="BottomRight" Margin="10,0,35,0"><br> <telerik:RadSlider.TickTemplate><br> <DataTemplate x:Uid="DataTemplate_1" ><br> <StackPanel x:Uid="StackPanel_1"><br> <Ellipse x:Uid="Ellipse_1" Width="1" Height="4" Fill="Black" /><br> <Label x:Uid="Label_2" Content="{Binding Converter={StaticResource ScopeNameConverter}}" HorizontalAlignment="Center"/><br> </StackPanel><br> </DataTemplate><br> </telerik:RadSlider.TickTemplate><br> </telerik:RadSlider>