Click here to Skip to main content
15,868,306 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
In window forms application i used this syntax to fill gridview.

gridView.DataSource=ds.Tables["Table"];

what will be the (similar)syntax for for datagrid in wpf, i want to fill it with dataset.
Posted

1 solution

Try this:

C#
gridView.ItemsSource = ds.Tables["Table"].AsEnumerable();
 
Share this answer
 
Comments
footballpardeep 16-Sep-12 9:45am    
I don't know why it's adding empty rows to it.
What i am doing:
1)Drag and drop the datagrid on the MainWindow.
2) dataGrid1.ItemsSource = ds.Tables["Table1"].AsEnumerable();
3)Dataset ds has 6 rows.(i checked).
Output is like that:
______________________
______________________
______________________
______________________
______________________
_______________________
Adam David Hill 16-Sep-12 10:19am    
Looks like you haven't created a template for the datagrid's columns. The data is "in" the datagrid okay, but you need to define a template in the XAML to say what it should look like. Check out the tutorial here: http://wpftutorial.net/DataGrid.html.
vishna 25-Sep-14 9:55am    
DataGrid AutoGenerateColumns="true"

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