2013. 3. 1. 09:30
출처: 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"; }