This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to customise the look of the RadTimePicker. The example in your documentation (http://www.telerik.com/help/silverlight/radtimepicker-styling.html) doesn't work for me.
I would like a very simple button that brings up a time selector.
I've manged to get this far:
Which customises the picker with a simple button and detects a left click. I then try and show the picker menu by setting picker.IsDropDownOpen = true; inside my left click event handler... but nothing appears.
Can you help?
Thanks,
Phill
I'm trying to customise the look of the RadTimePicker. The example in your documentation (http://www.telerik.com/help/silverlight/radtimepicker-styling.html) doesn't work for me.
I would like a very simple button that brings up a time selector.
I've manged to get this far:
<telerik:RadTimePicker x:Name="picker" InputMode="TimePicker" SelectionChanged="picker_SelectionChanged"> <telerik:RadTimePicker.Template> <ControlTemplate TargetType="telerik:RadTimePicker"> <Button MouseLeftButtonDown="Button_MouseLeftButtonDown" /> </ControlTemplate> </telerik:RadTimePicker.Template> <telerik:RadTimePicker.ClockStyle> <Style TargetType="telerik:RadClock"> <Setter Property="Header" Value="Select a Time:" /> </Style> </telerik:RadTimePicker.ClockStyle> </telerik:RadTimePicker>Which customises the picker with a simple button and detects a left click. I then try and show the picker menu by setting picker.IsDropDownOpen = true; inside my left click event handler... but nothing appears.
Can you help?
Thanks,
Phill