I have a ComboBox inside of a cell of a DataGridView Row on a Windows form. I need the following to happen:
- click on the ComboBox
- pick a value
- recalculate a total & display inside of a lable that is sitting outside of the DataGridView.
Currently, the following is happening:
- Click on the ComboBox
- Click it again to open the CB's Drop-down list
- select a value
- click outside of the cell to force a recalculation of the external label.
I want to avoid, first, having to click the combo twice (once to set focus, and again to select the value). Second, I'd like for a live recalculation to happen after selecting a value.
Does anyone have a trick or two to solve any of these?
I've tried most of the events on the DGV without much luck.