How to set Datetimepicker to Month and Year only format?

c#, datetimepicker

Solution

Use `DateTimerPicker.Format` property. Check MSDN

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MM/yyyy";
}

Problem

How can I set the `Datetimepicker`-Format to MM/YYYY?

Original source

Related problems