BlackPearl.Controls.Library 2.0.4

dotnet add package BlackPearl.Controls.Library --version 2.0.4
NuGet\Install-Package BlackPearl.Controls.Library -Version 2.0.4
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="BlackPearl.Controls.Library" Version="2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlackPearl.Controls.Library --version 2.0.4
#r "nuget: BlackPearl.Controls.Library, 2.0.4"
#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 BlackPearl.Controls.Library as a Cake Addin
#addin nuget:?package=BlackPearl.Controls.Library&version=2.0.4

// Install BlackPearl.Controls.Library as a Cake Tool
#tool nuget:?package=BlackPearl.Controls.Library&version=2.0.4

BlackPearl WPF Control Library

Build Status NuGet BlackPearl NuGet BlackPearl GitHub Gitter


About repository

This repository is created to put different basic WPF Custom-control/User-controls under same roof. These controls solve basic and frequently faced issue by developers. As of now, this contains only one custom-control MultiSelectCombobox. In future, I'm planning to add more.

BlackPearl is licensed under MIT license.


Content:


MultiSelectCombobox

Overview

WPF has ListBox control which lets user select more than one item. However, ListBox control UI doesn't have in-built support for searching/filtering. Developers have to do work around to provision one. Moreover, lot of mouse interaction is required. Yes, you may be able to do all completely using keyboard. But, not most efficient way of doing. On the other hand, Combobox has a very good UI which supports searching and filtering. However, it doesn't support multiple selection.

What if we can combine behavior of ListBox and goodness of Combobox UI? MultiSelectCombobox exactly does the same thing. It provides functionality of searching/filtering with multiple selection. MultiSelectCombobox tries to mimic UI behavior of ComboBox.

alternate text is missing from this package README image

alternate text is missing from this package README image


Feature

  • In built support for searching and filtering
  • Extensible to support custom searching and filtering for Complex data type
  • Ability to create and add new item which is not part of source collection (through LookUpContract for complex types)
  • Easy to use!
Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.
  • net6.0-windows7.0

    • 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
2.0.4 367 10/21/2023
2.0.3 1,332 7/31/2022
2.0.2 623 2/5/2022
2.0.1 494 8/4/2021
2.0.0 394 5/25/2021
1.0.2.1 649 9/22/2020
1.0.2 521 4/28/2020
1.0.1 477 4/25/2020
1.0.0 513 4/19/2020

Added Drag-Drop support