Quantcast
Channel: Editors for WPF - Recent Posts
Viewing all articles
Browse latest Browse all 942

Multi select combo box

$
0
0

Do you have a multi selection combo box similar to Flags-EnumEditBox? Except instead of specifying an enum value, a list of selected items and a full list could be specified..

e.g

class Properties {

    // ...

    [TypeConverter(typeof(AllSelectableOptionsTypeConverter))] // provides the list of standard values
    [Editor(typeof(...), typeof(PropertyEditor)]
    public ObservableCollection<string> Selected {get; set}

}

 Or is there an easy way to adapt EnumEditBox? Almost feels like a subset of EnumEditBox implementation.


Viewing all articles
Browse latest Browse all 942

Trending Articles