mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
19 lines
554 B
C#
19 lines
554 B
C#
using System;
|
|
using System.Windows.Data;
|
|
|
|
namespace MSFSPopoutPanelManager.MainApp.Converter
|
|
{
|
|
public class StringEmptyConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
{
|
|
return value ?? parameter;
|
|
}
|
|
|
|
public object ConvertBack(
|
|
object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|
|
}
|