mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-10 20:02:31 +00:00
26 lines
717 B
C#
26 lines
717 B
C#
using System;
|
|
using System.Globalization;
|
|
using Avalonia.Data.Converters;
|
|
using DiscordChatExporter.Core.Discord.Data;
|
|
|
|
namespace DiscordChatExporter.Gui.Converters;
|
|
|
|
public class ChannelToHierarchicalNameStringConverter : IValueConverter
|
|
{
|
|
public static ChannelToHierarchicalNameStringConverter Instance { get; } = new();
|
|
|
|
public object? Convert(
|
|
object? value,
|
|
Type targetType,
|
|
object? parameter,
|
|
CultureInfo culture
|
|
) => value is Channel channel ? channel.GetHierarchicalName() : null;
|
|
|
|
public object ConvertBack(
|
|
object? value,
|
|
Type targetType,
|
|
object? parameter,
|
|
CultureInfo culture
|
|
) => throw new NotSupportedException();
|
|
}
|