本文共 1123 字,大约阅读时间需要 3 分钟。
ylbtech-SilverLight-Basic-Control:基础控件使用(6)-Slider控件 |
1.A, Slider控件(滑动器控件) |
2,Name, Height, Width,
Maxmum, Minmum, Value,
Orientation[布局方向]=[水平方向|垂直方向], IsDirectionReversed[增长方向]=[True[自右向左增加|自上而下增加]]
//赋值this.slider1.Value = 10;this.slider1.Orientation = Orientation.Horizontal; //水平方向this.slider1.IsDirectionReversed = true; //自右而左递增//取值double var = this.slider1.Value;
4,
1.B, Slider控件(滑动器控件)之ValueChanged事件 |
2,文字同上 1.A.3
public Slider(){ InitializeComponent(); //赋值 this.slider3.Value = 3; //设置默认值}////// 值已改变事件/// 【注意: slider3控件前台的 value不要设默认值,否则回引发异常,但可以在后台设值】/// /// /// private void slider3_ValueChanged(object sender, RoutedPropertyChangedEventArgse){ //方式一 //this.label1.Content = this.slider3.Value.ToString(); //这种方式也可以,但不建议使用 //方式二 double newValue = e.NewValue; //新值 double oldValue = e.OldValue; //旧值 this.label1.Content = e.NewValue.ToString(); //建议使用这种方式 }
4,
本文转自ylbtech博客园博客,原文链接:http://www.cnblogs.com/ylbtech/p/3402039.html,如需转载请自行联系原作者