I am working with an existing database for a client. They have in VBA used int type for a field (0,-1) and managed to bind to a checkbox. They should have gone with the bit type.
Is there anyway I can do some conversion here in xaml or code behind as binding takes place?
I've done similar is ASP.NET
Thanks in advance
Yes, there. You should create a class that implements IValueConverter and apply that converter to the Converter property of the Field ( the one you wish yo display checkboxes in).