web-dev-qa-db-fra.com

Comment formater la date et l'heure en XAML dans l'application Xamarin

J'ai un code XAML configuré ci-dessous.

<Label Text="{Binding Date}"></Label>
<Label Text="{Binding Time}'}"></Label>

Je veux un résultat comme le 12 septembre 2014 à 14h30.

27
Narendra

Changez votre code pour:

<Label Text="{Binding Date, StringFormat='{0:MMMM dd, yyyy}'}"></Label>
<Label Text="{Binding Time, StringFormat='{}{0:hh\\:mm}'}"></Label>
74
user1

Créez une implémentation IValueConverter personnalisée:

public class DatetimeToStringConverter : IValueConverter
{
    #region IValueConverter implementation

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value == null)
            return string.Empty;

        var datetime = (DateTime)value;
        //put your custom formatting here
        return datetime.ToLocalTime().ToString("g");
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException(); 
    }

    #endregion
}

Ensuite, utilisez-le comme ça:

<ResourceDictionary>
    <local:DatetimeToStringConverter x:Key="cnvDateTimeConverter"></local:DatetimeToStringConverter>
</ResourceDictionary>

...

<Label Text="{Binding Date, Converter={StaticResource cnvDateTimeConverter}}"></Label>
<Label Text="{Binding Time, Converter={StaticResource cnvDateTimeConverter}}"></Label>
7
Daniel Luberda

Utilisez les spécificateurs standard . NET Date Format .

Obtenir

12 septembre 2014 14h30

utiliser quelque chose comme

MMMM d, yyyy h:mm tt
6
Jason