Woof.Windows.Controls 5.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Woof.Windows.Controls --version 5.0.1
NuGet\Install-Package Woof.Windows.Controls -Version 5.0.1
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="Woof.Windows.Controls" Version="5.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Woof.Windows.Controls --version 5.0.1
#r "nuget: Woof.Windows.Controls, 5.0.1"
#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 Woof.Windows.Controls as a Cake Addin
#addin nuget:?package=Woof.Windows.Controls&version=5.0.1

// Install Woof.Windows.Controls as a Cake Tool
#tool nuget:?package=Woof.Windows.Controls&version=5.0.1

Woof.Windows.Controls

About

This package contains some tiny but useful WPF controls.

  • Checks: A kind of Menu having a label containing a list of selected options or a fallback text for nothing selected or available.
  • Spinner: A Windows 8 / 10 style loading animation with optional percentage label,
  • TextBoxEx: A TextBox extension diplaying a label placeholder when it's empty.

How to use the Checks control

This controls uses Woof.Windows.Mvvm because it's designed for MVVM. The control's ItemsSource should be bound to an observable collection, the ObservableList<T> is preferred.

The only acceptable item type for that control is Woof.Windows.Mvvm.Check.

The item contains the Value property (typically - the item text) and the IsChecked property that is true when the item is checked.

When the user checks or unchecks an item in the control - the PropertyChanged event is triggered on the view model collection if it implements INotifyPropertyChanged interface.

Handle the event in order to apply changes to your view model depending on the items selection state.

See the provided demo project and refer to built-in XML documentation for more details.


Disclaimer

Please report any bugs on project's GitHub page.

Woof Toolkit is a work in progress in constant development, however it's carefully maintained with production code quality.

Each Woof Toolkit package comes with FULL XML documentation. If you notice any undocumented part or a bug in documentation - please open an issue on the project's GitHub page.

Product Compatible and additional computed target framework versions.
.NET net5.0-windows7.0 is compatible.  net6.0-windows was computed.  net7.0-windows was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
7.0.0 163 8/6/2023
6.2.0 446 2/20/2022
5.0.4 322 10/7/2021
5.0.2 329 10/5/2021
5.0.1 298 10/5/2021
5.0.0 302 10/5/2021
1.0.1 1,004 6/18/2018
1.0.0 849 6/16/2018

FIX: thicker default style for Checks control to align with default style buttons.