Questions tagged [imultivalueconverter]

IMultiValueConverter is an interface defined in Microsoft .NET WPF and used with MultiBinding data binding. Implementors of the interface have the opportunity to compose or convert items from multiple input collections into a single output collection.

The Microsoft .NET WPF MultiBinding object requires that you provide an IMultiValueConverter implementation when specifying multiple input collections in the MultiBinding object. The multivalue converter's job is to decide how to combine the elements from the multiple input collections. The IMultiValueConverter implementation can also filter elements, returning only a subset of the items found in the input collections.

For more details, see the MSDN documentation for IMultiValueConverter

133 questions
0
votes
1 answer

Generate treeview from two seperate lists, where child objects has id to parent

I'm sitting with a problem, where I have two separate ObservableCollection in a ViewModel. One list contains the following object: public class TypeCategory { public int Id { get; set; } public string Name { get; set; } public string…
dennis_ler
  • 659
  • 1
  • 9
  • 36
0
votes
0 answers

MultiBinding does not seem to be working

I am seeing an issue with MultiBinding. Below is the code snippet
Raj Discussion
  • 165
  • 2
  • 2
  • 8
0
votes
1 answer

How to use the IsSelected property of the row in a converter?

I have a datagrid and I am using this multivalue converter: