Using this code
I would get this UI result: (See oldtelerik ui.png as I am not sure how to link it)
Now it seems I need to use the RadTimePicker.ClockStyle like this:
But this second one gives me something that looks very different. (See newtelerik ui.png)
So, how do I achieve the old look that I had using the new ClockStyle?
All of the documentation seems to be using the old ClockPanel and HeaderContent and are unhelpful as those things seem to be gone in the new version.
Thanks,
Ralph
<
telerik:RadTimePicker
x:Name
=
"startTimePicker"
Width
=
"80"
telerik:StyleManager.Theme
=
"{StaticResource customClock}"
>
<
telerik:RadTimePicker.ClockPanel
>
<
ItemsPanelTemplate
>
<
StackPanel
/>
</
ItemsPanelTemplate
>
</
telerik:RadTimePicker.ClockPanel
>
</
telerik:RadTimePicker
>
I would get this UI result: (See oldtelerik ui.png as I am not sure how to link it)
Now it seems I need to use the RadTimePicker.ClockStyle like this:
<
telerik:RadTimePicker
x:Name
=
"startTimePicker"
Width
=
"80"
telerik:StyleManager.Theme
=
"{StaticResource customClock}"
>
<
telerik:RadTimePicker.ClockStyle
>
<
Style
TargetType
=
"telerik:RadClock"
>
<
Setter
Property
=
"ItemsPanel"
>
<
Setter.Value
>
<
ItemsPanelTemplate
>
</
ItemsPanelTemplate
>
</
Setter.Value
>
</
Setter
>
</
Style
>
</
telerik:RadTimePicker.ClockStyle
>
</
telerik:RadTimePicker
>
But this second one gives me something that looks very different. (See newtelerik ui.png)
So, how do I achieve the old look that I had using the new ClockStyle?
All of the documentation seems to be using the old ClockPanel and HeaderContent and are unhelpful as those things seem to be gone in the new version.
Thanks,
Ralph