tags:

views:

71

answers:

2

I've been battling trying to figure out how to visually create a table. It's a weird table that is sortable by column but only rows are selectable.

For people using uTorrent it looks something like this

alt text

I can't find this anywhere in Visual Studio! If it's not avialiable, how would I go about creating it myself?

+7  A: 

Looks like a regular ListView with the View property = Details with FullRowSelect.

Albin Sunnanbo
Yup. The sorting has to be added. ListView.ListViewItemSorter property.
Hans Passant
Thanks so much!
Luca Matteis
A: 

You could use the DataGridView control.

Darin Dimitrov