I have a data object with a component in it, which is System.Collections.Generic.IList, and I would like to reflect the changes in this list in Gtk # NodeView so that when adding an item to the list, NodeView will get a new element added to it.
How will I listen to changes in IList? I looked at wrapping an IList with a class that implements IList, delegates the necessary methods, and broadcasts the event when its contents change, but this seems like a lot of work on something that was probably already resolved by someone else.
source
share