Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.