What should be the best practice to declare the converters:
- Declare ALL my converters in the app.xaml (i.e. in
<Application.Resources/>
) so it's available in the entire application. - Declare on each
Page
/Window
/ResourceDictionary
/DataTemplate
etc. at itsResources
section, the converters I need on this page. - You tell me...
That's for sure (at least for my opinion) that regarding readability way no. 1 is the best, my question is about performance.