如何在某些情况下禁用转换器

时间:2013-02-21 16:18:21

标签: c# wpf xaml

自动调整大小为false时,如何禁用以下转换器。我应该在什么都不做区域中添加什么代码。

[ValueConversion(typeof(Boolean), typeof(Double))]
public class ConvertAutoSize2HeightWidth : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        Boolean autosize = (Boolean)value;
        if (autosize)
            return Double.NaN;
        else
            //**do nothing**
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

1 个答案:

答案 0 :(得分:5)

您可以尝试返回Binding.DoNothing

  

绑定源属性或转换器可以返回Binding.DoNothing以指示绑定引擎不执行任何操作。例如,要指示绑定引擎不要将值传输到绑定目标,不要移动到Binding中的下一个PriorityBinding,或者不要使用 FallBackValue 或默认值。