Is it possible to locate UIelement(s) on the visual tree in silverlight by inspecting the databinding somehow for a business object being bound. What I want to do is locate elements using a lambda expression (or any other means) from the element being bound something like:
var uielements = FindAllUIElements ( (businessObject)=> { businessObject.Firstname; } );
Can anyone point me in the right direction please.