I have what I believe should be simple two-way databinding in WPF setup, but the listbox (target) is not updating as the collection changes.
I\'m setting this ItemsS
i got stuck for more than hour and then simple logic solved this problem just set itemsource to clear list and then set source u need again
lstVariable_Selected.ItemsSource = new List(); lstVariable_Selected.ItemsSource = m_VariableList;