Some UserControl uses converters, which usually look like this:
<UserControl.Resources>
<Converters:CurrentDataConverter x:Key="CurrentDataConverter"/>
</UserControl.Resources>
I would like to have a base user control for interception of converters, for example, to use Dependency Injection. Would it be possible? Thank you.