In WPF how to use GridView?
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 d开发者_StackOverflow中文版o same things in WPF. Please provide some working example.
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
You should use the DataGrid control.
Here are the examples for using WPF ListView
and WPF DataGrid
精彩评论