I have a combobox in a WPF Window, it is filled with usernames from database,
When a new user is created in database, i want the UserName to be pushed to the ComboBox, i.e., added to the existing.
Similary when a User is deleted, it should be Poped from the ComboBox.
How can i do this.
Currently, i am using WPF MVVM with Caliburn Micro.
I bind the ItemsSource to an ObservableCollection for that. Works when you add or delete items from the collection.