Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4970
How to get the seleted items for XamComboEditor?
posted

I set multiple selection for XamComboEditor like:

<ig:XamComboEditor IsEditable="True" AllowFiltering="True" AutoComplete="True" AllowMultipleSelection="True"
ItemsSource="{Binding MyList, Mode=TwoWay}"
DisplayMemberPath="MyName" 
SelectedItem="{Binding MyItem, Mode=TwoWay}" 
...
/>

MyList is collection of MyItem which have many members, like MyID, MyName, .....

There is a SeletedItem for only one item selected, but I want to binding for all items selected, how to bind selected Items to another collection of MyItem, say MySelectedItems?