MultiComboBox 1.1.3

dotnet add package MultiComboBox --version 1.1.3
NuGet\Install-Package MultiComboBox -Version 1.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MultiComboBox" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MultiComboBox --version 1.1.3
#r "nuget: MultiComboBox, 1.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MultiComboBox as a Cake Addin
#addin nuget:?package=MultiComboBox&version=1.1.3

// Install MultiComboBox as a Cake Tool
#tool nuget:?package=MultiComboBox&version=1.1.3

WPF MultiComboBox

>= .NET Framework 4.7.2

Based on https://www.codeproject.com/Articles/45782/A-WPF-Combo-Box-with-Multiple-Selection

Examples

SelectedItems must be an instance of IList.

DisplayMemberPath:

<customControls:MultiComboBox ItemsSource="{Binding Items}"
                              SelectedItems="{Binding SelectedItems}"
                              SelectionMode="Multiple"
                              DisplayMemberPath="Label" />

DataTemplate:

<customControls:MultiComboBox ItemsSource="{Binding Items}"
                              SelectedItems="{Binding SelectedItems}"
                              SelectionMode="Multiple">
    <customControls:MultiComboBox.ItemTemplate>
        <DataTemplate>
            <Label Background="Red"
                   Content="{Binding Label}"
                   Margin="0"
                   Padding="2,0"/>
        </DataTemplate>
    </customControls:MultiComboBox.ItemTemplate>
</customControls:MultiComboBox>
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.2

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 7,235 11/23/2021
1.1.2 6,402 11/23/2021