tags:

views:

55

answers:

3

I just started playing around with WPF today, and I couldn't find the datagridview control. What gives? Is it called something else? Please help a very confused individual.

Thanks

+2  A: 

Sadly, there is no built-in DataGrid for WPF. However, they have released an MS-supported one on CodeProject. Check this out.

Charlie
Alright ill try it out. I'm assuming I have to download this whole tookit thing off that site?
broke
+3  A: 

If you are using .Net 4.0 - you have the DataGrid which is the equivalent of the DataGridView. (And it is essentially the same as the 3.5sp1 CTP Charlie links to)

Goblin
+1  A: 

there is a built in data grid for wpf in .net 3/3.5, it just called ListView.. and you need to tell him that his default view is GridView(built in view type of list view)

it does not have many capabilities and thats why WPFToolkit implemented a DataGrid control

Chen Kinnrot