Benday.Presentation.Controls 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Benday.Presentation.Controls --version 2.0.0
                    
NuGet\Install-Package Benday.Presentation.Controls -Version 2.0.0
                    
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="Benday.Presentation.Controls" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Benday.Presentation.Controls" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Benday.Presentation.Controls" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Benday.Presentation.Controls --version 2.0.0
                    
#r "nuget: Benday.Presentation.Controls, 2.0.0"
                    
#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.
#:package Benday.Presentation.Controls@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Benday.Presentation.Controls&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Benday.Presentation.Controls&version=2.0.0
                    
Install as a Cake Tool

Benday.Presentation.Controls - MAUI MVVM Controls

Ready-to-use .NET MAUI controls for MVVM apps. Bind entire ViewModelField objects for automatic label, validation, and visibility support.

NuGet NuGet Downloads License: MIT

Written by Benjamin Day Pluralsight Author | Microsoft MVP | Scrum.org Professional Scrum Trainer https://www.benday.com https://www.slidespeaker.ai info@benday.com YouTube: https://www.youtube.com/@_benday

Available Controls

  • TextboxField - Text input with label and validation
  • ComboboxField - Dropdown selection bound to SelectableCollectionViewModel
  • ListboxField - List selection with single or multi-select support
  • LabelField - Display-only field with consistent styling

Suggestions, Problems, or Bugs?

Got ideas for features you'd like to see? Found a bug? Let us know by submitting an issue https://github.com/benday-inc/mvvm-presentation/issues. Want to contribute? Submit a pull request.

Installing

dotnet add package Benday.Presentation.Controls

Quick Start


<controls:TextboxField BindingContext="{Binding FirstName}" />
<controls:TextboxField BindingContext="{Binding LastName}" />
<controls:ComboboxField BindingContext="{Binding Country}" />
// In your ViewModel
public ViewModelField<string> FirstName { get; } = new("First Name");
public ViewModelField<string> LastName { get; } = new("Last Name");
public SingleSelectListViewModel Country { get; } = new();

The controls automatically handle:

  • Displaying the field label
  • Showing/hiding based on IsVisible
  • Enabling/disabling based on IsEnabled
  • Displaying validation messages when IsValid is false

Documentation

Full documentation: https://benday-inc.github.io/mvvm-presentation/

Product Compatible and additional computed target framework versions.
.NET net10.0-android36.0 is compatible.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst26.0 is compatible. 
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
2.1.1 105 12/30/2025
2.1.0 96 12/30/2025
2.0.0 93 12/30/2025
1.2.3 211 11/25/2024
1.2.1 168 11/25/2024
1.2.0 166 11/25/2024
1.1.0 229 8/18/2024
1.0.0 253 1/11/2024

v2.0.0 - .NET 10 support
v1.2.3 - Fixed bug where SelectableCollection was setting the wrong selected item if an item was already selected
v1.2.1 - Fixed stack overflow exception in SelectableCollectionViewModel
v1.2 - Fixed a nasty bug in SelectableCollectionViewModel where the wrong interface was being checked for IsSelected value changes
v1.1 - Multi select list view model
v1.0 - Initial release