How to use another type of EditingControl in a single C# 3.5 DataGridView column ?
- by too
Is this possible to have two (or more) different kinds of cells to be displayed interchangeably in single column of C# .Net 3.5 DataGridView?
I know one column has specified single EditingControl type, yet I think grid is flexible enough to do some tricks, I may think of only:
Adding as many invisible columns to grid as required types of cells and on CellBeginEdit somehow exchange current cell with other column's cell
Create custom column and custom cell with possibility of changing EditingControl for single cell
Which approach is better, are there any examples ?