It seems an easy problem but I can't figure out. The scenery:
In C#/WPF/MVVM, I have a DataGrid showing some data. One field (a cell of a row) is an integer value. Now I need to display a ComboBox for that cell showing "local" if the value is 0, "Network" if the value is 1 or greater. How can I bind this?
Thank you.