Adding a “Tag” property to a ListBox's items, like a TreeView's Nodes?

后端 未结 2 506
-上瘾入骨i
-上瘾入骨i 2021-01-25 12:21

I\'m making a Windows Form project that will search for files in the specified folders in my spare time. So far, I\'ve got my TreeView that displays folders just like in the Win

2条回答
  •  醉话见心
    2021-01-25 12:30

    You should create a custom SearchResult class with a property that returns the full path.
    The class should override ToString() and return the text you want to display in the listbox.

    You can then put instances of your class directly into the listbox, and cast an item from the listbox back to the class to get the property.

提交回复
热议问题