Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.63 KB

rangebase_minimum.md

File metadata and controls

36 lines (24 loc) · 1.63 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.Primitives.RangeBase.Minimum
winrt property

Windows.UI.Xaml.Controls.Primitives.RangeBase.Minimum

-description

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

-xaml-syntax

<rangeBase Minimum="double"/>

-property-value

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

-remarks

Note

When binding Minimum and Maximum values in Extensible Application Markup Language (XAML), declare the Binding for Maximum first. If the Binding for Maximum is declared after Minimum, the bound value for Maximum is ignored and the following situations can occur: + If the bound Minimum value is negative, the Maximum value is set to 0.

  • If the bound Minimum value is greater than the default Maximum (100 for Slider and ProgressBar), the Maximum value is set equal to the Minimum value. To avoid this behavior, declare the Binding for Maximum first in your Extensible Application Markup Language (XAML).

These behaviors can also occur if you set the Minimum value without also explicitly setting the Maximum value.

-examples

-see-also