mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-08 19:10:35 +00:00
28 lines
906 B
C#
28 lines
906 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows.Data;
|
|
|
|
namespace DiscordChatExporter.Gui.Converters
|
|
{
|
|
[ValueConversion(typeof(DateTimeOffset?), typeof(DateTime?))]
|
|
public class DateTimeOffsetToDateTimeConverter : IValueConverter
|
|
{
|
|
public static DateTimeOffsetToDateTimeConverter Instance { get; } = new();
|
|
|
|
public object? Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value is DateTimeOffset dateTimeOffsetValue)
|
|
return dateTimeOffsetValue.DateTime;
|
|
|
|
return default(DateTime?);
|
|
}
|
|
|
|
public object? ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value is DateTime dateTimeValue)
|
|
return new DateTimeOffset(dateTimeValue);
|
|
|
|
return default(DateTimeOffset?);
|
|
}
|
|
}
|
|
} |