This question is locked. New answers and comments are not allowed.
With the recent introduction of multi list picker I have an idea for another feature. I currently use Enum with [Flags] attribute for storing data user selects. It will be great to have the possibility to edit this Enum value using ListPicker with multiselect.
Typical use:
[Flags] public enum Recurrence { Monday = 0x1, Tuesday = 0x2, Wednesday = 0x4, Thursday = 0x8, Friday = 0x10, Saturday = 0x20, Sunday = 0x40, }