views:

48

answers:

2

In Silverlight there is no DataGridComboBoxColumn in the DataGrid.

This is sad. What is the best way to recreate this functionality.

+1  A: 

You don't really need a specific class. Use a DataGridTemplateColumn and set the template to have a combobox.

Timores
A: 

This is a good overview with some dowwnloadable code http://weblogs.asp.net/manishdalal/archive/2008/09/28/combobox-in-datagrid.aspx

AJM