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