Combobox in a datagrid

  • Thread starter Thread starter Kurt Vandevelde
  • Start date Start date
K

Kurt Vandevelde

Hi,

Is it possible de create a datagrid on a Winform where
the columns can contain a combobox instead of a simply
textzone?

Thanks

Kurt Vandevelde
 
Override the DataGridColumnStyle class to host a ComboBox.

There is an example in the help for DataGridColumnStyle that hosts a
DateTime picker, this could be adapted to host the combo box control.

--
Bob Powell [MVP]
C#, System.Drawing

The October edition of Well Formed is now available.
Find out how to use DirectX in a Windows Forms control
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Blog http://bobpowelldotnet.blogspot.com
 
Back
Top