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
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="Matix.Controls.Progressbar" Version="1.1.0.20346" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Matix.Controls.Progressbar --version 1.1.0.20346
#r "nuget: Matix.Controls.Progressbar, 1.1.0.20346"
#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 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 Progressbar

Flat off:
3D Border Progressbar

BackColor

With the BackColor property, you can customize the background color of the progessbar.
BackColor set to Black:
BackColor set to black

BackColor set to Green:
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 blue

ForeColor set to Yellow:
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 Compatible and additional computed target framework versions.
.NET Framework net40-client is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 618 12/11/2020
1.0.7.20346 330 12/11/2020

First Release. Published NuGet-Package