Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm using a DataSet and DataGrid.

I bind them like this :
ObjDataAdapter.Fill(ObjDataSet);
ObjDataGrid.ItemsSource = ObjDataSet.Tables[0].DefaultView;


I want to add DataGridComboBoxColumn to ObjDataGrid and show a ComboBox in each row . how can I do that in wpf?
Posted
Updated 25-Oct-10 1:36am
v2
Comments
Dalek Dave 25-Oct-10 7:36am    
Edited for Readability.

1 solution

MSIL
i have an idea . split ObjDataSet columns and add them manually to OJDataGrid . at the end add
DataGridComboBoxColumn. does anybody knows how to do that?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900