I have a WPF form with ListBox items bound to a method that receives items for a list. What I want is an extra item at the top of the ListBox, which behaves differently with the rest of the items.
For example, let's say I have a list of authors (binding to a list), and when I select an author, he fills out another list with books from that author. I would like to have an additional item in the lstAuthors list called "Show All" that will populate the other list with all the books. How to add this extra item to my list?
Martin doms
source share