Reputation: 3509
In WPF there is listview but no GridView control. I am familier with ASP.NET's GridView how to insert,update and delete, its events like Rowupdating, RowEditing etc. Now I want to do same things in WPF. Please provide some working example.
Upvotes: 0
Views: 4551
Reputation: 55288
Here are the examples for using WPF ListView
and WPF DataGrid
Upvotes: 2
Reputation: 19635
I think you're looking for the DataGrid. Here's a CodeProject article with examples and code: http://www.codeproject.com/KB/WPF/WPFDataGridExamples.aspx
Upvotes: 2