Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

There are tons of good date pickers out there for Windows forms, but I have yet to find any good time only pickers.

Any suggestions?


EDIT

I guess I should be more clear. I am talking about a nicer looking time picker. We use a commercial control suite, and the default time picker looks out of place because it is so plain.

share|improve this question
The DateTimePicker in Windows Forms can do time-only with the CustomFormat property... are you just looking for a more sexy control? – routeNpingme Jun 25 '09 at 21:21
Yes, something that looks nicer. – Dana Holt Jun 25 '09 at 21:23

2 Answers

up vote 7 down vote accepted

DatePicker has a property Format that can be set to Time. Be sure to set ShowUpDown to True.

Infragistics is pretty popular for Winforms and has the option for its DateTimePicker.

... setting the MaskInput to {time} should get the behavior you are looking for. If you only set the FormatString property, the the time will display only when the control is in edit mode (when the cursor is in the control).

from http://forums.infragistics.com/forums/t/4172.aspx

share|improve this answer

You mean, as opposed to the standard Winforms DateTimePicker?

this.dateTimePicker1.CustomFormat = "hh:mm";
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;

...

private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
    MessageBox.Show(dateTimePicker1.Value.TimeOfDay.ToString());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.