这就是我想要做的:
<Slider Minimum="1" Maximum="100" IsSnapToTickEnabled="True" Ticks="10,20,50,75,100" />
但这是在“IsSnapToTickEnable”上时 Visual Studio 显示的消息:“成员 IsSnapToTickEnabled 无法识别或无法访问。”
蜱虫也是如此。为什么我不能在 Windows Phone 中使用此功能?
谢谢
private void SliderValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
//Get The new value
int newValue = (int)e.NewValue;
//Set the new position
SliderAmount.Value = newValue;
}
滑块将转到设置为值的位置。(在我的示例中,我的滑块参数是 Minimum="1" Maximum="5" SmallChange="1")