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