I am trying to create a DataGridView that holds configuration information.
The available values can change for each row within a column based on the values in a different column so I can't attach a single datasource to the comboBox column. As an example: If you select car, the availalbe colors should be limited to colors available for that model.
Car ColorsAvailable
Camry {white,black}
CRV {white,black}
Pilot {silver,sage}
The reason for considering the dataGridView is so that the operator can add rows for additional cars.
What is a good design to implement this type of a UI?