Student
Student

Reputation: 3509

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 do same things in WPF. Please provide some working example.

Upvotes: 0

Views: 4551

Answers (3)

codeandcloud
codeandcloud

Reputation: 55288

Here are the examples for using WPF ListView and WPF DataGrid

Upvotes: 2

SLaks
SLaks

Reputation: 888195

You should use the DataGrid control.

Upvotes: 2

Brian Driscoll
Brian Driscoll

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

Related Questions