Skip to main content
Email Password   helpLost your password?

Introduction

Did you ever used the DateTimePicker that comes with .NET? If so, you must appreciate the easy to use drop down calendar where you click on the date that you need. You can even navigate the months and the years very easily at the top of its panel. Every user that I know just loves this component.

The DateTimePicker can also be converted in a TimePicker. Unfortunately, I've never been satisfied with this TimePicker since it uses a numeric up-down control to select your time. There is no drop down feature. The user must manually type in his/her time and that has always bothers me. I asked myself if there could be an easier way to select a time.

With my TimePicker, this problem is solved. The TimePicker shows a drop down panel very similar to the DateTimePicker. Instead of having dates, you have hours and minutes on the panel. You click on the time that you want and then click outside of the panel to see the time being assigned to the TimePicker control.

TimePicker v2 finally complete

After 4 years, I finally decided to update the TimePicker. Based on the comments, it had a few bugs in it. I took the time to fix some of them and added a few new features to it. I tried to keep the same functionalities to avoid any breaking changes. If I broke something, I'm sorry. For people who would like a TimePicker for .NET 3.0 or on Vista, I haven't worked with those technologies (yet). Try it out and let me know.

New feature

Fixes

How to install?

Simply add the DLL to the Visual Studio .NET toolbox. You will see an item named TimePicker at the very end. Just drag and drop this component on your form and you are ready to use the TimePicker.

How it works?

You simply click on the drop down arrow on the right side of the component to set the desired time. You then call the Value property to get that time. I use a TimeSpan to hold the time since the .NET Framework already has a structure to handle time values.

If you want a string representation of your time, you can use the ToString methods implemented in the TimePicker or you can throw back the TimeSpan in a DateTime structure and call its ToString which has a lot of predefined format.

Useful properties

TimePicker has a few interesting properties that I have added. Read the following to know how you can customize the TimePicker the way you want.

ButtonColor

You can choose the color of your choice for the buttons. This color will go on the buttons that are not selected.

Checked

Property that returns the state of the checkbox of the control

Format

A string that is parsed by the TimePicker. The format is responsible for displaying the time in the TimePicker control.

RightToLeft

Change this property if you want the time to be on the right side of your TimePicker.

ShowCheckBox

A boolean value to place a checkbox on the left side of the control. Clicking in the checkbox will enable the rest of the control.

ShowDropDown

A boolean value that makes the arrow on the right side of the component disappear. Since the user can click on the hours or the minutes, some developers might want to hide the drop down arrow.


SelectedColor

You can choose the color of your choice for the buttons that are selected.

Separator

A character is inserted here. Based on the preference of the developer, you can separate the hours from the minutes with any character that you want.

SeparatorColor

Don't confuse this property with Separator, they are not related. SeparatorColor is a color used to separate the hours from the minute in the panel. If you change the colors of the buttons with ButtonColor and SelectedColor, you might want to harmonize the display by choosing a color for the separator.

TimeSelector

An enum that changes the mode of the TimePicker. If you only want the hours to be displayed in the TimePicker, set this property to Hours. If you also want the minutes, select the Minutes value and if you want both, choose HoursAndMinutes. For people who want to use TimePicker to pick seconds, just use the Minutes value and place a label next to it called Seconds.

Value

The Value property is a TimeSpan structure. It holds the time that you have set with the user interface. You can change it with my very own TimePicker interface by clicking on it like in the picture below.

Tips'n'tricks

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralPicking seconds doesn't work. Pin
sss_golovko
3:02 13 Mar '09  
GeneralRe: Picking seconds doesn't work. Pin
Louis-Philippe Carignan
17:54 16 Mar '09  
GeneralRe: Picking seconds doesn't work. Pin
sss_golovko
9:30 17 Mar '09  
Generaltimepicker installation problem Pin
floko
4:49 11 Nov '08  
GeneralRe: timepicker installation problem Pin
Louis-Philippe Carignan
2:14 12 Nov '08  
AnswerProperly show hours(0-23) and minutes(0-59) in .net2.0 vs2005 Pin
SimeonVelichkov
3:59 24 Jun '08  
GeneralRe: Properly show hours(0-23) and minutes(0-59) in .net2.0 vs2005 Pin
ehrenberg
2:41 20 Nov '08  
GeneralTimeSpan greater than 24 hours Pin
Michael Kämpf
0:07 7 Apr '08  
GeneralI used listboxes Pin
ndennisv
8:55 27 Jan '08  
QuestionApp on Second Monitor Control Paints on First Monitor Pin
lodlaiden
13:12 14 Aug '07  
QuestionFontsize problem Pin
Christoph Herrmann
23:47 1 Jul '07  
AnswerRe: Fontsize problem Pin
Louis-Philippe Carignan
4:41 2 Jul '07  
AnswerRe: Fontsize problem Pin
Christoph Herrmann
5:15 2 Jul '07  
GeneralRelated TimePicker Pin
Vasudevan Deepak Kumar
0:02 28 Jun '07  
GeneralRe: Related TimePicker Pin
Louis-Philippe Carignan
13:09 28 Jun '07  
GeneralNice, but.... Pin
menenedezpoo
12:21 27 Jun '07  
GeneralVery Cool Pin
merlin981
11:52 27 Jun '07  
GeneralTimePicker - Plz Help Me.... Pin
Veesam Suresh Kumar
20:22 11 Jun '07  
QuestionHow user can exit from time picker only using keyboard? Pin
Emil1500
21:08 6 May '07  
AnswerRe: How user can exit from time picker only using keyboard? Pin
Louis-Philippe Carignan
12:13 7 May '07  
GeneralRe: How user can exit from time picker only using keyboard? Pin
Emil1500
1:23 13 May '07  
GeneralThanks.. Pin
upadhyaynidhi
20:59 29 Jan '07  
QuestionHaving an issue with control Pin
Deepabh
12:00 24 Mar '06  
AnswerRe: Having an issue with control Pin
Olli Nissinen
8:26 11 May '06  
GeneralRe: Having an issue with control Pin
Rudolf Jan Heijink
8:38 25 Mar '07  


Last Updated 27 Jun 2007 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009