using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; namespace Aitex.Sorter.UI.Converter { public class TicksToDateTimeConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { try { if (value == null) return "0"; var dateTime =new DateTime(long.Parse(value.ToString())); return dateTime.ToString("yyyy-MM-dd HH:mm:ss"); } catch (Exception) { return "0"; } } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }