如何向ListBox添加属性?

时间:2013-03-20 13:45:49

标签: c# wpf xaml

VB6有fileListBox .path属性,我试图将该属性添加到常规列表框中。

ListBox myfilelistbox = new ListBox();

XAML生成的那个。

2 个答案:

答案 0 :(得分:1)

ListBox是一个通用控件,它以线性方式显示项目列表。你想要做的是显示项目的层次结构,而不是它们的列表。

没有这样的内置控件,你必须自己构建一个或找到其他人实现的控件。

检查有关此其他Stack Overflow线程Is there a WPF control which will show a list of files in an Explorer-like view?的更多信息。

以下有关CodeProject的文章可以帮助您:A WPF File ListView and ComboBox

答案 1 :(得分:1)

我认为你想要的是Attached Properties