Files
2023-04-29 18:36:50 +08:00

24 lines
632 B
C#

using System;
using System.Windows.Data;
namespace AIStudio.Wpf.DiagramDesigner
{
public class ArrowSizeConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is SizeStyle arrowStyle)
{
return (int)arrowStyle;
}
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
}