DatagridviewComboBoxCell for just one cell
问题 .NET 3.5 Winforms I have a datagridview bound to a datatable at RUNTIME. There are three columns. The third column is the only editable one. Sometimes the value is free text, sometimes the value is a selection from a combobox, or at least that is the design. After I bind the data table to the Datagridview with this code: With dgvColumnFilters .DataSource = _dtFilter .AllowUserToAddRows = False .AllowUserToDeleteRows = False .Columns(0).Visible = False .Columns(0).ReadOnly = True .Columns(1)