Is it possible to change the style of datetime picker in windows c# application, I want round shape border to my calendar. Required style and current view is provided in Image . Thank you.
Asked
Active
Viewed 2,774 times
-5

Farhad
- 4,119
- 8
- 43
- 66

Rupesh Kamble
- 167
- 3
- 11
-
5Yes, paint it yourself. – Equalsk Sep 14 '17 at 10:45
-
https://stackoverflow.com/questions/18822067/rounded-corners-in-c-sharp-windows-forms – Berkay Yaylacı Sep 26 '17 at 10:28
2 Answers
3
Short answer: No
Long answer: You can't do that 'out of the box' in win forms application, unless you are ready to pull your hair out to write custom controls (Even then you will not achieve what you are expecting, like above image) Other options would be to use WPF and/or use some 3rd party controls (like Telerik or Syncfusion)

Misam
- 4,320
- 2
- 25
- 43
3
Syncfusion DateTimePickerAdv supports creating rounded corner DateTimePicker. Here is an example.
Screenshot
You need Syncfusion Essential Studio to be installed for the sample to work. The entire product is available in this link.
Note: I work for Syncfusion.

Kannan
- 191
- 1
- 1
- 10