I was wondering if its possible to make a single comboBox not visible or disabled for only that certain row?
right now I have something like
private void gvAirSegment_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex+1 == gvAirSegment.Columns["RemarkLine"].Index)
{
if (!gvAirSegment.CurrentCell.Selected)
{
gvAirSegment.Columns[2].Visible = true;
}
else
{
gvAirSegment.Columns[2].Visible = false;
}
}
}
which on click of a checkbox it hides the entire column, but I would like it so only that combobox is not visible/disabled.
If I could get the control that would be the best, if I could turn it into a GridViewComboBox into a comboBox control
Thanks