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" />
<PackageReference Include="VControl" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=VControl&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
V-Control
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.
Features
- VButton - Button Component
- VCard - Card Component
- VCheckableCollection - Checkable Collection Component
- VCheckBox - Checkbox Component
- VCheckBoxButton - Checkbox Button Component
- VCheckBoxGroup - Checkbox Group Component
- VCollection - Collection View Component
- VDateNativePicker - Native Date Picker Component
- VDatePicker - Date Picker Component
- VEditor - Editor Component
- VExpander - Expander Component
- VFormItem - Form Component
- VIndicator - Progress Indicator Component
- VMenuCell - Menu Item Component
- VNumberEntry - Number Entry Component
- VPicker - Picker Component
- VRadioButton - Radio Button Component
- VRadioButtonGroup - Radio Button Group Component (Toggle Bar)
- VSearchBar - Search Bar Component
- VTagPicker - Tag Picker Component
- VTimeLine - Timeline Component
- VTopAppBar - Top App Bar Component
- VTouchContentView - Gesture Listener Component
- VUploader - File Upload Component
- VValidatingEntry - Validating Entry Component
- VValidatingPicker - Validating Picker Component
- VRichTextEditor - Rich Text Editor Component
- VEntry - Entry Component
- VPlaceholderView - Placeholder View Component
Todo
- VAutocomplete - Autocomplete Component
- VComparisonView - Comparison View Component
- VCalendar - Calendar Component
- Dark Mode
- BlazorApp-based Components
Quick Start
- 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.
- 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;
}
- Open the
App.xamlfile 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
| Product | Versions 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.
-
net9.0-android35.0
- CommunityToolkit.Maui (>= 11.2.0)
- Microsoft.Maui.Controls (>= 9.0.111)
- Microsoft.Maui.Controls.Compatibility (>= 9.0.111)
-
net9.0-ios18.0
- CommunityToolkit.Maui (>= 11.2.0)
- Microsoft.Maui.Controls (>= 9.0.111)
- Microsoft.Maui.Controls.Compatibility (>= 9.0.111)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.