mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
28 lines
848 B
C#
28 lines
848 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|