LoadingIndicator.Winforms 0.0.10

There is a newer version of this package available.
See the version list below for details.
dotnet add package LoadingIndicator.Winforms --version 0.0.10
NuGet\Install-Package LoadingIndicator.Winforms -Version 0.0.10
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="LoadingIndicator.Winforms" Version="0.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LoadingIndicator.Winforms --version 0.0.10
#r "nuget: LoadingIndicator.Winforms, 0.0.10"
#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 LoadingIndicator.Winforms as a Cake Addin
#addin nuget:?package=LoadingIndicator.Winforms&version=0.0.10

// Install LoadingIndicator.Winforms as a Cake Tool
#tool nuget:?package=LoadingIndicator.Winforms&version=0.0.10

Winforms long operation indicator.

Features:

  • Stop keyboard/mouse action until operation complete
  • Show loading indicator only if operation is really long (by default 700ms)
  • If loading indicator is shown and operation is just completed, prolong this operation to minimum show indicator time (300ms by default) to awoid flickr
  • When operation is really long greyscale and blur parent controls, display colorized loading indicator on top
  • Ability to change color of loading indicator
  • Ability to fully change indicator control

Get Started:

private LongOperation _longOperation;

public MainForm()
{
   InitializeComponents();

   // Initialize long operation with control which will
   // be overlayed during long operations
   _longOperation = new LongOperation(this);

   // You can pass settings to customize indicator view/behavior
   // _longOperation = new LongOperation(this, LongOperationSettings.Default);
}

public async vod DoSomethingLongClick(object sender, EventArgs e)
{
    using(_longOperation.Start())
    {
        await DoSomethingLongAsync();
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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 4,105 1/11/2022
1.1.0-beta 886 3/30/2021
1.0.6 2,063 2/26/2021
1.0.5 929 2/26/2021
1.0.4 889 2/26/2021
1.0.3 5,987 3/15/2019
1.0.1 1,290 1/25/2019
1.0.0 1,189 1/25/2019
0.2.5 1,316 11/26/2018
0.2.4 1,325 11/19/2018
0.2.3 1,311 10/23/2018
0.2.2 1,307 10/16/2018
0.2.1 1,295 10/11/2018
0.1.3 1,328 10/1/2018
0.1.2 1,459 9/17/2018
0.1.1 1,664 6/29/2018
0.0.14 1,422 6/4/2018
0.0.12 1,512 5/15/2018
0.0.11 1,505 5/15/2018
0.0.10 1,463 5/8/2018
0.0.9 1,469 4/24/2018
0.0.8 1,450 4/19/2018
0.0.7 1,423 4/12/2018
0.0.6 1,392 4/12/2018
0.0.5 1,420 4/11/2018