public class FlowModeToBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (parameter is string paramString && int.TryParse(paramString, out int paramInt))
{
return value is int selectedValue && selectedValue == paramInt;
}
return false;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is bool isChecked && isChecked && parameter is string paramString && int.TryParse(paramString, out int paramInt))
{
return paramInt;
}
return -1; // 或者根据需要返回其他默认值
}
}