What is The difference between ListBox and ListView

后端 未结 3 491
既然无缘
既然无缘 2020-12-02 07:04

What is the difference between WPF\'s ListBox and ListView? I can not find any significant difference in their properties. Is there different typical use?

3条回答
  •  北海茫月
    2020-12-02 07:32

    Listview derives from listbox control. One most important difference is listview uses the extended selection mode by default . listview also adds a property called view which enables you to customize the view in a richer way than a custom itemspanel. One real life example of listview with gridview is file explorer's details view. Listview with grid view is a less powerful data grid. After the introduction of datagrid control listview lost its importance.

提交回复
热议问题