Multi select combo box

Editors for WPF Forum

Posted 7 years ago by Imre Lengyel
Version: 17.1.0651
Avatar

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.

Comments (1)

Posted 7 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar

Hello,

Sorry but we don't have anything that would work for that right now.  EnumEditBox is pretty tied internally to Enum-oriented usage.  You could do something like use our PopupButton and in the popup show a standard ListBox.  That might achieve a similar effect.  The only trick would be updating the PopupButton content as selections change.


Actipro Software Support

The latest build of this product (v24.1.1) was released 1 month ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.