WPF Binding FallbackValue set to Binding

前端 未结 3 1103
谎友^
谎友^ 2021-01-31 15:43

Is there a way to have another binding as a fallback value?

I\'m trying to do something like this:

3条回答
  •  逝去的感伤
    2021-01-31 16:30

    Under what conditions would you like it to use the Fallback value? How would you determine that a binding has failed? A binding is still valid even if it's bound to a null value.

    I think a good bet may be to use a converter to convert to a default value if the binding returns null. I'm not sure how you could default to another bound value though.

    Check out converters here

提交回复
热议问题