Matix.Controls.Progressbar
1.1.0.20346
dotnet add package Matix.Controls.Progressbar --version 1.1.0.20346
NuGet\Install-Package Matix.Controls.Progressbar -Version 1.1.0.20346
<PackageReference Include="Matix.Controls.Progressbar" Version="1.1.0.20346" />
paket add Matix.Controls.Progressbar --version 1.1.0.20346
#r "nuget: Matix.Controls.Progressbar, 1.1.0.20346"
// Install Matix.Controls.Progressbar as a Cake Addin #addin nuget:?package=Matix.Controls.Progressbar&version=1.1.0.20346 // Install Matix.Controls.Progressbar as a Cake Tool #tool nuget:?package=Matix.Controls.Progressbar&version=1.1.0.20346
Documentation
Creating a Progressbar
You can eather create a progressbar through the Designer or through code.
Using the Designer
You can simply drag and drop the Progressbar onto your Form using the toolbox shipped wtih Visual Studio.
Using code
If you want tó create your Progressbar through code, you simply specify a new variable of the type Matix.Controls.Progressbar.ProgressBar
.
Matix.Controls.Progressbar.ProgressBar progressbar = new Matix.Controls.Progressbar.ProgressBar();
Or if you want to shorten the Assembly name, you just specify a new using term
.
using Matix.Controls;
and then simply create the progressbar like this
Progressbar.ProgressBar progressbar = new Progressbar.ProgressBar();
Properties
The Progressbar has multiple customizable properties.
Flat
The property Flat
defines if the Progressbar should be Flat or not.
Flat
on:
Flat
off:
BackColor
With the BackColor
property, you can customize the background color of the progessbar.
BackColor
set to Black
:
BackColor
set to Green
:
ForeColor
The ForeColor
property defines the color of the progressbar which displays the value.
ForeColor
set to Blue
:
ForeColor
set to Yellow
:
Maximum
The property Maximum
defines the maximum value of the progressbar.
Minimum
Minimum
sets the minimum value of the progressbar.
Value
The Value
property defines the current value of the progressbar.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40-client is compatible. |
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.1.0.20346 | 674 | 12/11/2020 |
1.0.7.20346 | 363 | 12/11/2020 |
First Release. Published NuGet-Package