12345678910111213141516171819202122232425262728293031323334 |
- 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();
- }
- }
- }
|