* [[EvalExpressionConverter]]
Evaluates a C# expression with 3 optional variables (''Param0, Param1, Param2'') and returns the result. The object fed into the converter can be referenced in the expression as ''Context''.
Example:
* [[CollectionToViewConverter]]
Converts a collection into a view that can be filtered using C# expressions and returns the (filtered) result. The object fed into the converter can be referenced in the expression as ''Item''.
Example:
x:Name="ChildListView"
HorizontalContentAlignment="Stretch"
ItemsSource="{Binding ElementName=FilterQuery, Path=Text, Converter={StaticResource ColConv}}">
</ListView>
</StackPanel>