1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/MainApp/Converter/KeystrokeBindingsConverter.cs

28 lines
848 B
C#
Raw Permalink Normal View History

2024-03-01 11:28:09 +00:00
using System;
using System.Linq;
using System.Windows.Data;
namespace MSFSPopoutPanelManager.MainApp.Converter
{
public class KeystrokeBindingsConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value == null || value.GetType() != typeof(string))
return "Not Assigned";
var joinParam = parameter == null ? string.Empty : parameter.ToString();
var items = value.ToString().Split("|");
return string.Join(joinParam, items.ToArray());
}
public object ConvertBack(
object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
}
}