S
S
swyt2020-06-17 16:41:46
C++ / C#
swyt, 2020-06-17 16:41:46

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.
5eea1cc8db604927876598.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Y
yuopi, 2020-06-17
@yuopi

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 your question

Ask a Question

731 491 924 answers to any question