I have a column in my DGV that is a custom type to display values of MyObjectType. My DataTable has the column created as MyObjectType, but the DGV creates a DataGridViewTextBox column and populates it with MyObjectType.ToString(); which is not the behavior I want.
Can I either force the data to be loaded into preexisting columns; or is there a away to specify that a MyObjectTypeColumn should be created to display MyObjectType data?
I need to display both an image and a text value for the MyObjectType value in a single column; similar to how the name column in explorer when using details view so I can't shoehorn the data into a single column like the default behavior.