mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
34 lines
968 B
C#
34 lines
968 B
C#
|
using System;
|
|||
|
using System.Globalization;
|
|||
|
using System.Windows.Controls;
|
|||
|
using System.Windows.Data;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.MainApp
|
|||
|
{
|
|||
|
public class ExpanderRotateAngleConverter : IValueConverter
|
|||
|
{
|
|||
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
{
|
|||
|
double factor = 1.0;
|
|||
|
if (parameter is { } parameterValue)
|
|||
|
{
|
|||
|
if (!double.TryParse(parameterValue.ToString(), out factor))
|
|||
|
{
|
|||
|
factor = 1.0;
|
|||
|
}
|
|||
|
}
|
|||
|
return value switch
|
|||
|
{
|
|||
|
ExpandDirection.Left => 90 * factor,
|
|||
|
ExpandDirection.Right => -90 * factor,
|
|||
|
_ => 0
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|