Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a listbox that has its SelectionMode property set to Multiple.

Is it possible to bind the SelectedItem property to a List? and not to a single item?

Thanks

share|improve this question

2 Answers

up vote 5 down vote accepted

I've been using Samuel's solution for this and it works very well.

http://blog.functionalfun.net/2009/02/how-to-databind-to-selecteditems.html

share|improve this answer
The answer of Jobi Joy is pretty simple and works fine. Why reinventing the wheel and wasting time by reading that blog article? Beauty is in the simplicity :) – Stacked May 14 at 15:31

You can use ListBox.SelectedItems property for this.

    <ListBox x:Name="listBox" SelectionMode="Multiple" ItemsSource="{Binding YourCollection}" />
    <ListBox ItemsSource="{Binding SelectedItems , ElementName=listBox}"/>
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.