Using Converters while data binding

In data binding, when the source object type and the target object type differs, value converters are used to manipulate data between the source and the target. This is done by writing a Converter class, implementing the IValueConverter interface. It consists of two methods:

  • Convert(...): This gets called when the source updates the target object.
  • ConvertBack(...): This gets called when the target object updates the source object:

Implementation of the value converter is simple. First create a class in your project. We named it BoolToColorConverter and implemented it from IValueConverter. Implement the ...

Get Mastering Visual Studio 2017 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.