When I set the ItemsSource of a ListBox to the contents of a table, like this:
this.listBox.ItemsSource = db.Table;
The items are not updated automatically in the ListBox. How can I manage to update the ListBox automatically when items are added, removed or changed? And can I also receive an event when the collection has changed?