hi,
I created a custom control that internally is using BindingList to keep track of Account objects that are displayed in some custom grid. I want to add a DependencyProperty to my control that will expose set/get for List that will allow me TwoWay binding between my control and data model. I want to be able to set that list to initialize my control, and get updates resulting from updates to BindingList. In short I need to somehow provide a translation between the List from DependencyProperty and my internal BindingList and vice versa (depending whether my control is initially bound from the data source, or the data source is updated based on changes to BindingList in my control).
The examples that I found on the web deal with controls working directly with lists set on DependencyProperties - In my case I want to have a level of indirecion as the BindingList is not necessarly the same as list from DependencyProperty.