about ListView

  • Thread starter Thread starter Tony
  • Start date Start date
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
 
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
 
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 :)
 
Back
Top