Reputation: 38228
Since .NET has source code exposed http://blogs.microsoft.co.il/blogs/arik/archive/2010/07/12/step-into-net-framework-4-0-source-code.aspx
Where and how could I find .NET WPF implementation of databinding ? I'd like to see how it's implemented just by curiosity.
Upvotes: 0
Views: 112
Reputation: 4502
Download the 30 day trial of .NET Reflector, and open PresentationCore, should be found at: C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll
That said, I believe WPF uses System.Windows.Data for Bindings and Data
Upvotes: 1
Reputation: 50682
The best start might be by reading the code of the Binding class
That is where most of the magic is.
On a side note: you don't need to download the source code for that. You could use Reflector or DotPeek or similar tools to reverse engineer the code. But that's up to you.
Upvotes: 3