I'm a complete WPF novice, so please pardon my question. I've tried to Google the answer, but can't understand a lot of the examples given out there.
I have a simple ListView control that is bound to an XML DataContext like so:
<ListBox Name="lstEmailAddresses" ItemsSource="{Binding XPath=EmailToAddresses/Address}"/>
I just want to be able to have another TextBox and a Button. When the user clicks the Button, the text of the TextBox will be added to the ListBox.
I know I need to update the ListBox's ItemsSource somehow, but I can't figure out how to do it.
Thanks for your help! Angie