Instead of declaring the converter in the Resources, i can do something like
IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}"
where Instance is instantiated only once (lazy sinlgeton)
But i'm worried about keeping references to static variables might get in the way of garbage collection when disposing the views (i'm using PRISM). What do you think?