Categories
Is it possible to make a calendar in windows forms?
Is it possible to make a similar calendar in windows forms? The DateTimePicker element is not suitable, I need to separate the year, month and numbers.
Answer the question
In order to leave comments, you need to log in
If I understand correctly how to split, then you can do this:
var day = dateTimePicker1.Value.Day; var month = dateTimePicker1.Value.Month; var year= dateTimePicker1.Value.Year;
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question