Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1425
XamSlider WPF, 13.1, Visual Studio 2013 error
posted

The following code no longer works in Visual Studio 2013. It builds, but I get XAML error "The property 'tickMarks' does not have an accessible setter' and cannot view the designer. Same for XamSliderNumericThumb.

<ig:XamNumericRangeSlider x:Name="xamNumericSliderPlaySpeed" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" Margin="10,5,0,0" HorizontalAlignment="Stretch" VerticalAlignment="Top" MinValue="-2" MaxValue="2" SmallChange="1" LargeChange="1" TrackClickAction="MoveToPoint" IsMouseWheelEnabled="True">  <ig:XamNumericRangeSlider.TickMarks>   <ig:SliderTickMarks NumberOfTickMarks="3" UseFrequency="False" IncludeSliderEnds="True"/>  </ig:XamNumericRangeSlider.TickMarks>  <ig:XamSliderNumericThumb Value="0" IsSnapToTickEnabled="True">   <ig:XamSliderNumericThumb.TrackFillBrush>    <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">     <GradientStop Color="#FFFEF10F" Offset="0"/>     <GradientStop Color="#FFE55415" Offset="1"/>    </LinearGradientBrush>   </ig:XamSliderNumericThumb.TrackFillBrush>  </ig:XamSliderNumericThumb> </ig:XamNumericRangeSlider>

 

Parents Reply Children
No Data