RangeBase.Minimum Property

Definition

Gets or sets the Minimum possible Value of the range element.

public:
 property double Minimum { double get(); void set(double value); };
[System.ComponentModel.Bindable(true)]
public double Minimum { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Minimum : double with get, set
Public Property Minimum As Double

Property Value

Minimum possible Value of the range element. The default is 0.

Attributes

Examples

RangeBase controls such as Slider and ProgressBar inherit the RangeBase properties. The following example shows a Slider that uses the Minimum property.

Slider hslider = new Slider();
hslider.Width = 100;
hslider.Orientation = Orientation.Horizontal;
hslider.IsSnapToTickEnabled = true;
hslider.Minimum = 1;
hslider.Maximum = 20;
hslider.TickPlacement = TickPlacement.Both;
hslider.TickFrequency = 2;
hslider.AutoToolTipPlacement =
  AutoToolTipPlacement.BottomRight;
cv1.Children.Add(hslider);
Dim hslider As New Slider()
hslider.Width = 100
hslider.Orientation = Orientation.Horizontal
hslider.IsSnapToTickEnabled = True
hslider.Minimum = 1
hslider.Maximum = 20
hslider.TickPlacement = TickPlacement.Both
hslider.TickFrequency = 2
hslider.AutoToolTipPlacement = AutoToolTipPlacement.BottomRight
cv1.Children.Add(hslider)
<Slider Name="slider1" 
        Width="100" 
        Orientation="Horizontal" HorizontalAlignment="Left" 
        IsSnapToTickEnabled="True" Minimum="1" Maximum="20" 
        TickPlacement="Both"  TickFrequency="2"
        AutoToolTipPlacement="BottomRight"/>

Remarks

Dependency Property Information

Identifier field MinimumProperty
Metadata properties set to true None

Applies to