출처: http://msdn.microsoft.com/en-us/library/system.windows.forms.datetimepicker.customformat.aspx

dateTimePicker 포맷을 변경할 경우가 필요할때 사용한다..ㅋㅋ

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
}


Posted by 노을지기