I have a WPF form with a ListBox of items bound to a method that gets the items for the list box. What I want is an additional item at the top of the ListBox that behaves differently to the rest of the items.
For example, let's say I have a list of Authors (databound to a List), and when I select an author it populates another listbox with books from that author. I'd like to have an additional item in the lstAuthors listbox titled Show All, which will populate the other listbox with all books. How can I add this addtional item to my listbox?