generate functionTue, 07 Feb 2023

wpf binding datetime , StringFormat=d

public class FormatConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { DateTime date = (DateTime)value; return date.Date.ToString("d"); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } }

Questions about programming?Chat with your personal AI assistant