web-dev-qa-db-fra.com

Comment définir Datetimepicker au format Mois et Année?

Comment définir le format Datetimepicker- sur MM/YYYY?

18
asdasdad

Utilisez la propriété DateTimerPicker.Format. Vérifiez _ MSDN

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

Vous pouvez utiliser la propriété DateTimerPicker.Format comme suit:

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

Remarque: DateTimerPicker.ShowUpDown = true; sert à rendre le calendrier non visible.

11

Cela vous donnera plus d'options pour afficher la date avec des formats diff. 

DateTimerPicker.Format = DateTimePickerFormat.Custom;
DateTimerPicker.CustomFormat = "MM/yyyy"; // this line gives you only the month and year.
DateTimerPicker.ShowUpDown = true;

Vous trouverez ci-dessous les différents formats permettant d'afficher uniquement la date sur le sélecteur de date et heure de l'application Windows C #.

DateTimerPicker.CustomFormat = "MMMM yyyy";

Le code ci-dessus affichera le nom du mois complet et l'année comme "Août 2018"

DateTimerPicker.CustomFormat = "MMMM yyyy";

Le code ci-dessus affichera le nom du mois complet, la date et l'année comme "08 août 2018"

DateTimerPicker.CustomFormat = "dd MM yyyy";

Cette ligne donnera la date dans le format spécifié avec une barre oblique "08 08 2018"

DateTimerPicker.CustomFormat = "dd/MM/yyyy";

Cette ligne donnera un format plus spécifique à la date "08/08/2018"

DateTimerPicker.CustomFormat = "dd/MMM/yyyy";

Cette ligne donne la date au format "08/Août/2018"

0
Gopi P