I have a DataGridView where the DataSource is a BindingList. Most of the columns are updated -- via various timers which call PropertyChanged("...") for the bound columns. One column -- the problematic one -- is a DataGridViewComboBoxColumn -- where the user selects an item from the list of Items.
The problem is that the DataGridViewComboBoxColumn is not usable. It is flashing all the time -- apparently when PropertyChanged events occur -- and whatever item I try to select, it remains unchanged.
Any idea what I'm doing wrong?