user896692
user896692

Reputation: 2371

Data presentation in WPF

At the moment, I´m writing a C# - WPF - application, where I often need to show a few Data out of the database. Now, my "problem" is, that I don´t want to use a datagrid, because it is already used very often in my app.

Is there any control to show data to the user "beautiful" instead of a datagrid?

Upvotes: 0

Views: 502

Answers (1)

brunnerh
brunnerh

Reputation: 185140

ListView with a GridView as View looks pretty nice by default. (Also there is nothing stopping your from making a nice style for the DataGrid)

Upvotes: 2

Related Questions