-
Have a look at the class inheritance hierarchy -
ListVIew
Hide Copy Code
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
System.Windows.Forms.Control
System.Windows.Forms.ListView
ListBox
Hide Copy Code
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
System.Windows.Forms.Control
System.Windows.Forms.ListControl
System.Windows.Forms.ListBox
Microsoft.VisualBasic.Compatibility.VB6.DirListBox
Microsoft.VisualBasic.Compatibility.VB6.FileListBox
System.Windows.Forms.CheckedListBox
A ListView
can be displayed using one of four different views.
-
The ListView control is used to display the values from a data source. It resembles the GridView control, except that it displays data by using user-defined templates instead of row fields. Creating your own templates gives you more flexibility in controlling how the data is displayed.
The ListView is exactly like the Windows Explorer lists, allowing views for tiles, detail, icons. ListView also allows other properties like unique colors for each item, and checkboxes.
ListBox is much simpler, vertical only list.
-
'Knowledge' 카테고리의 다른 글
[.NET] Hashtable Generic (0) | 2018.05.30 |
---|---|
[스크랩] [C#] 람다식 작성 (0) | 2018.05.30 |
[UWP] StorageFolder.GetFoldersAsync Method (0) | 2018.05.26 |
[UWP] Uploading a file using Windows.Web.Http from UWP app to a WebAPI web service (0) | 2018.05.26 |
[UWP] 선택기를 사용하여 파일 및 폴더 열기 (0) | 2018.05.26 |