about ListView

T

Tony

Hello!

I read about this ListView.
Does is exist any component that is a ListView that is redy to be used in
..NET ?
Is those CommonDialog(OpenFileDialog, saveFileDialog and so on) that is
shipped with .NET is example on ListView?

I have never used a ListView control before so I
wonder if the usage of this control is only useful in rare occasions?

//Tony
 
M

Marc Gravell

Does is exist any component that is a ListView that is redy to be used in
..NET ? Yes;
http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.aspx

I wonder if the usage of this control is only useful in rare occasions?
Well, the details view is quite similar to things like DataGridView, but
less flexible; but it does support grouping (which DataGridView
doesn't). The other views (small icons, large icons etc) are specific to
ListView.

Marc
 
I

Ignacio Machin ( .NET/ C# MVP )

Hello!

I read about this ListView.
Does is exist any component that is a ListView that is redy to be used in
.NET ?
Is those CommonDialog(OpenFileDialog, saveFileDialog and so on) that is
shipped with .NET is example on ListView?

I have never used a ListView control before so I
wonder if the usage of this control is only useful in rare occasions?

//Tony

I use ListView all over the place !!!
For me is the most used list control in my application.

You have the control as part of the framework, so you can use it right
now :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top