If you are developing TDD, it is better to choose converters.
If there is no complex business logic or user logic that applies, go to triggers. Another thing about converters is that there is a performance hit associated with using converters according to Laurent Bugnion (creator of MVVM Light).
You can see more performance information received in this post. DataTrigger versus data binding with converter efficiency
You can get more detailed information about when to use a trigger and when to use converters from this message. Should I use a WPF converter or trigger?
A decision can be made based on a development approach that you are following or are about to follow. I prefer most often to wrap your view model in the WPF Viewmodel concept.
Kishore kumar
source share