Click or drag to resize

CompositeConverter

A CompositeConverter allows the combination of up to five converters.

Example
                  <
                  Field Value="{Binding Content.Amount, Converter={CompositeConverter C1=Evaluate, P1='Round({0}*100,0)', C2=LinearToLog}" />
Parameters
  • C1 : IValueConverter

    First converter to be combined (will also be invoked first).

  • C2 : IValueConverter

    Second converter to be combined.

  • C3 : IValueConverter

    Third converter to be combined.

  • C4 : IValueConverter

    Fourth converter to be combined.

  • C5 : IValueConverter

    Fifth converter to be combined.

  • P1 : object

    Parameter for the first converter.

  • P2 : object

    Parameter for the second converter.

  • P3 : object

    Parameter for the third converter.

  • P4 : object

    Parameter for the fourth converter.

  • P5 : object

    Parameter for the fifth converter.