DeanChalk.UWP.ChipsControl 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package DeanChalk.UWP.ChipsControl --version 1.0.3
NuGet\Install-Package DeanChalk.UWP.ChipsControl -Version 1.0.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="DeanChalk.UWP.ChipsControl" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeanChalk.UWP.ChipsControl --version 1.0.3
#r "nuget: DeanChalk.UWP.ChipsControl, 1.0.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 DeanChalk.UWP.ChipsControl as a Cake Addin
#addin nuget:?package=DeanChalk.UWP.ChipsControl&version=1.0.3

// Install DeanChalk.UWP.ChipsControl as a Cake Tool
#tool nuget:?package=DeanChalk.UWP.ChipsControl&version=1.0.3

UWP Chips Control

Chips Control for UWP

How to use in a UWP app

If you want to include this control in an app, you can look at the sample project for guidance, but essentially the control has the following bindable properties:

SelectorStyle (ChipsControl.ChipsSelectorStyle)

This control include a selector for adding additional chips. There are 2 styles of selector - AutoSuggest and Selector

ChipsSelectorStyle.AutoSuggest

The AutoSuggest selector style is based on the UWP AutoSuggest control, so as you type into the search box you will see a list of matches to the items in the AvailableChips property (see below). In addition you can simply type a new value. With the AutoSuggest selector style you can add new values that are not yet available.

ChipsSelectorStyle.Selector

The Selector selector style is based on the UWP ComboBox control, so you have to select one of the existing items in the AvailableChips property (see below).

AvailableChips

This property is an enumerable of string values that represents the options available when selecting a chip. the Selector selector style is limited to this list for selecting chips. The AutoSuggest selector style can select values from this list or type in a new value not already in AvailableChips

SelectedChips

This property is an enumerable of string values that represents the selected values (chips) from the control

Product Compatible and additional computed target framework versions.
Universal Windows Platform netcore50 is compatible.  uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has 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.0.6 15,208 1/17/2018
1.0.3 1,083 1/13/2018

Initial release