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!
Asked
Active
Viewed 1,270 times
0
-
what you have done so far ? – lukai Dec 12 '16 at 06:59
-
pls see edited post – ali Dec 12 '16 at 08:55
-
why the question gets -1? this question is different. – ali Dec 12 '16 at 09:23
-
cause someone down-voted your question – lukai Dec 12 '16 at 09:56
1 Answers
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