VControl 1.1.0

dotnet add package VControl --version 1.1.0
                    
NuGet\Install-Package VControl -Version 1.1.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="VControl" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VControl" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="VControl" />
                    
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 VControl --version 1.1.0
                    
#r "nuget: VControl, 1.1.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 VControl@1.1.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=VControl&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=VControl&version=1.1.0
                    
Install as a Cake Tool

V-Control

License nuget codeSize Programming Language

English | δΈ­ζ–‡

V-Control is a component library for .NET MAUI, providing a set of out-of-the-box UI controls to quickly build business-oriented app interfaces.

alt text

Features

Todo

  • VAutocomplete - Autocomplete Component
  • VComparisonView - Comparison View Component
  • VCalendar - Calendar Component
  • Dark Mode
  • BlazorApp-based Components

Quick Start

  1. Run the following command in your .NET MAUI project to install V-Control:
dotnet add package VControl

Or search for "V-Control" in NUGET and install it.

  1. In MauiProgram, use .UseVControl() to add the V-Control handler in the MauiAppBuilder.
public static MauiApp CreateMauiApp()
{
    var builder = MauiApp.CreateBuilder();
    builder
        .UseMauiApp<App>()
        .UseVControl()   //πŸ‘ˆ Add V-Control handler here
    var mauiApp = builder.Build();
    return mauiApp;
}
  1. Open the App.xaml file and add <v:VControlTheme /> to the resources.

<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:v="clr-namespace:VControl.Styles;assembly=VControl">
    <Application.Resources>
        <v:VControlTheme />
        ...
    </Application.Resources>   
</Application>

Documentation

Visit V-Control Docs

Source Code and Samples

You can visit the GitHub to view the source code and examples for V-Control.

Stargazers over time

Stargazers over time

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net9.0-ios18.0 is compatible.  net10.0-android was computed.  net10.0-ios 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
1.1.0 170 10/16/2025
1.0.0 368 2/6/2025