So, the thing is: I have a ListBox with an ItemsTemplate in it as well as a button allready into the ItemsCollection, witch is the "Add item" button. The idea is to add a new item from the ItemsTemplate insite that listbox by clicking the "Add item" button, with is in another ListBoxItem inside the same listbox I want to add a new item to. I know I could just leave the "Add item" button outside the ListBox, but I really like the idea of the button being at the very bottom of the ListBox, because it's more intuitive, so I have to add a new item from the template, but can´t just bind the ItemsSource property, because it must be empty before using it, and it has the ListBoxItem with the add button allready, which is the the only non-template Item in it, then I have to ensure the button is moved to the bottom of the list.
Been searching for a while and found nothing, can´t figure it out.