I have a ListControl that is populated with an ObservableCollection. I've also got a "Add new item" text box on the usercontrol as well. When I enter text into the textbox and click "Add" the item goes through the appropriate logic and adds to my ObservableCollection, which my ListControl reflects immediately. So far, so good.
HOWEVER. That textbox is still populated with the item I just added... if I try to change or backspace that textbox, the item I just added reflects the change as well! How can I get the textbox to clear out after adding a new item? I'm using an MVVM approach, so my textbox is bound to {Binding Path=Object.Name}.
Any ideas?