I have a windows application project with a list of objects and combobox. How is it possible to two way bind this object to combo box. In two way I mean that when I add some element in list, combobox datasource should change automatically.
Share
List<T>won’t do the job, you wantBindingList<T>.