0

I need to pass two of the properties of a control as the converter parameter of binding of the third property. How can I do that?. i have created a class and pass that class as converter parameter but unfortunately it is not get value.. the threat is below:enter link description here Note that I need to pass two parameter to the binding converter parameter to be used in convert and vonvert back. I dont need pass multiple values to binding vonverter!

Community
  • 1
  • 1
ali
  • 63
  • 10

1 Answers1

0

You can use IMultiValueConverter of System.Windows.Data. It can use multiple parameters unlike IValueConverter.

Prajwal
  • 3,930
  • 5
  • 24
  • 50
  • More precisely, it converts multiple *values* of a MultiBinding, but still takes a single *parameter*, just like IValueConverter. – Clemens Dec 12 '16 at 07:02
  • as i need the multiple converter parameter for convert and convert back, i must use convert parameter that does not support binding to use multiple values.! – ali Dec 12 '16 at 08:49