-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathClockPage.xaml
More file actions
13 lines (13 loc) · 900 Bytes
/
Copy pathClockPage.xaml
File metadata and controls
13 lines (13 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<local:ControlExample DocPage="controls/clockPicker" HeaderText="ClockPicker with TimePicker">
<local:ControlExample.Xaml>
<x:String><dev:ClockPicker /></x:String>
</local:ControlExample.Xaml>
<local:ControlExample.Pane>
<StackPanel Spacing="10">
<TextBox x:Name="TxtTimeFormat" Header="TimeFormat" Text="HH:mm:ss" />
<NumberBox x:Name="MinuteIncrementNB" Header="Minute Increment" Value="1" Maximum="15"/>
</StackPanel>
</local:ControlExample.Pane>
<dev:ClockPicker x:Name="ClockPickerSample" TimeFormat="{x:Bind TxtTimeFormat.Text, Mode=OneWay}"
MinuteIncrement="{x:Bind (x:Int32)MinuteIncrementNB.Value, Mode=OneWay}"/>
</local:ControlExample>