I have created and used bool to visibility converters before and the other day, I forgot to use a converter on the binding (I am using traditional binding). I bound the visibility property of the control in my view to a bool property in my view model and surprisingly it works. So my question is if it works with traditional binding, why do we need to use converters? Because it seems the compiler is doing the conversion for me.
I tested it on a UWP app in Visual studio Update 3. The minimum app target is 10.0.10586 The target version is 10.0.14393
bool
, the only time you would want to use it is if thebool
value is an inverse of the desired intention. – Spermatophyte