2012-04-13 4 views
18

Come posso impostare Datetimepicker -Format su MM/YYYY?Come impostare Datetimepicker su Month e Year only format?

+1

hi consultare il link –

+1

Vista la risposta e dare un'occhiata a anche qui; http://www.geekzilla.co.uk/View00FF7904-B510-468C-A2C8-F859AA20581F.htm –

+1

possibile duplicato di [cercare un controllo selettore mese/anno per .net winform] (http://stackoverflow.com/ domande/1608792/look-for-a-month-year-selector-control-for-net-winform) –

risposta

43

Utilizzare la proprietà DateTimerPicker.Format. Verificare MSDN

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

grazie ha funzionato! – asdasdad

8

È possibile utilizzare DateTimerPicker.Format proprietà come segue:

DateTimerPicker.Format = DateTimePickerFormat.Custom; 
DateTimerPicker.CustomFormat = "MMMM yyyy"; 
DateTimerPicker.ShowUpDown = true; 

Nota: DateTimerPicker.ShowUpDown = true; è per fare il calendario non visibile