Silverlight 3.0 滑块以 N 为增量移动
我想知道是否有人知道如何以 50 或更多的增量移动滑块。
0 - 50 - 100 - 150 - 200 ETC ....
我正在实现一个滑块来过滤一些网格结果。
<Slider x:Name="PointsSlider" Width="350" Height="Auto" ValueChanged="PointsSlider_ValueChanged"
Minimum="25" Maximum="3000" LargeChange="50"></Slider>
I was wondering if anybody knows how to move the slider in increments of 50 or more.
0 - 50 - 100 - 150 - 200 ETC....
I'm implementing a slider to filter some grid results.
<Slider x:Name="PointsSlider" Width="350" Height="Auto" ValueChanged="PointsSlider_ValueChanged"
Minimum="25" Maximum="3000" LargeChange="50"></Slider>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是以编程方式执行相当于单击滑块“拇指”任一侧的操作,还是其他操作?
如果是这样:要模拟点击,只需将滑块的 Value 成员设置为当前值 +/- 所需的增量。
Do you mean programmatically do the equivalent of clicking either side of the slider's "thumb", or something else?
If so: To emulate the click just set the slider's Value member to the current value +/- the desired increment.