示例#1
0
 public SliderModel(BoundedDoubleItem item,
                    Orientation orientation = Orientation.Vertical,
                    bool isReversed         = false)
 {
     Item        = item;
     Orientation = orientation;
     IsReversed  = isReversed;
 }
示例#2
0
 public DoubleUpDownDisplayModel(BoundedDoubleItem item)
 {
     Item = item;
 }
 public ConstrainedSliderModel(BoundedDoubleItem item, Orientation orientation = Orientation.Vertical, bool isReversed = false) : base(item, orientation, isReversed)
 {
 }