How can i set the Converter used for a DataBinding in the code of a C# Application (cannot use XAML, because my Converter has no parameterless constructor, and those parameters are needed to do the conversion).
EDIT:
Another solution which worked for me in this case was:
Application.Current.Resources["MyConverter"].MyProperty = MyProperteryValue;
Set
BindingOperations.GetBinding(someInstance, SomeDependencyProperty).Converter.