Here‘s the documentation. I haven’t found any explanation anywhere. There is a data binding overview but is for WPF, and I’m using WinForms. I thought what it does is to call whatever method I assign to the event Format of the Binding class, but it will call it even if I set formattingEnabled to false as long as I assign a method. So now I don’t know what it does, and I don’t understand where is people supposed to get this kind of information.
Here ‘s the documentation. I haven’t found any explanation anywhere. There is a data
Share
It looks like you need a couple pieces… First here’s the Reflector’d bit on the Format event that you’ve added
and then there’s this:
So it’s still going to format the object according to what you’ve bound to the Format event handler.