Add multichannel export to GUI

Closes #12
This commit is contained in:
Alexey Golub
2019-02-09 19:03:34 +02:00
parent 65c5df89f4
commit e4b0d60c40
13 changed files with 366 additions and 136 deletions

View File

@@ -12,7 +12,7 @@ namespace DiscordChatExporter.Gui.Converters
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var format = (ExportFormat?) value;
var format = value as ExportFormat?;
return format?.GetDisplayName();
}