If I understand your question, your datetimepicker has ShowUpDown=true BUT you also want the calendar drop down to appear (with some key combination).
Well you can't and this comes directly from the Help documentation of the ShowUpDown property (just press on F1 in the property window)
When the ShowUpDown property is set to true, a spin button control
(also known as an up-down control), rather than a drop-down calendar,
is used to adjust time values. The date and time can be adjusted by
selecting each element individually and using the up and down buttons
to change the value.
You get one or the other. You may want to look at datetimepicker controls from 3rd party vendors like DevExpress, they may have this combination you are looking for.
ShowUpDown=false
, why do you think we can't use up and down keys withShowUpDown=false
? – King Kingarrow keys
? I can use up and down arrow keys to change the value of day, month or year inDateTimePicker
no matterShowUpDown
is true or false. How do you want to use the up and down arrow keys if that's not your want? – King King