Windows.UI.Xaml.Controls.TimePicker.MinuteIncrement
June 22, 2022 ยท View on GitHub
-description
Gets or sets a value that indicates the time increments shown in the minute picker. For example, 15 specifies that the TimePicker minute control displays only the choices 00, 15, 30, 45.
-xaml-syntax
<TimePicker MinuteIncrement="int"/>
-property-value
An integer from 0-59 that indicates the increments shown in the minute picker. The default is 1.
-remarks
You can set the MinuteIncrement property to indicate the time increments shown in the minute picker. For example, 15 specifies that the TimePicker minute control displays only the choices 00, 15, 30, 45.
-examples
This example shows a time picker using 15-minute increments.
<TimePicker MinuteIncrement="15"/>
