I want to do a control for adding and removing items from a two list (Selected and UnSelected), like this:
But I can't find a good way to do this; how can I use the GridData (or similar control like GridControl of Devexpress) for binding two List and modify it?
Problems:
- I can't use ObservableCollection with this control
- I can't bind the SelectedItems
If you have any suggestion or sample for some work, it will be a great help
Can you use two observable collections? One for selected and one for unselected. It seems to be the easiest way to implement such functionality.