Can I retrieve binding information from a given element? If one have in xaml
< Entry x:Name="entry1" Text="{Binding MyInfo}" / >
I would like retrieve (programatically) that the element 'entry1' is binded to 'MyInfo' property of BindingContext object. Is it possible?