WindowsFormsAnimation 1.0.0

dotnet add package WindowsFormsAnimation --version 1.0.0
NuGet\Install-Package WindowsFormsAnimation -Version 1.0.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="WindowsFormsAnimation" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WindowsFormsAnimation --version 1.0.0
#r "nuget: WindowsFormsAnimation, 1.0.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.
// Install WindowsFormsAnimation as a Cake Addin
#addin nuget:?package=WindowsFormsAnimation&version=1.0.0

// Install WindowsFormsAnimation as a Cake Tool
#tool nuget:?package=WindowsFormsAnimation&version=1.0.0

WindowsFormsAnimation


NuGet Packages <br/> .NET Framework 4.7.2

A DLL


A biblioteca é grátis para uso comercial ou não comercial. <br/> Animações para Windows Forms. <br/> As animações podem ser usadas de forma independente ou dependente do compomente.

COMPATIVEL


  1. System.Windows.Forms.Panel

USANDO NO COMPONENTE


  1. Instale a biblioteca pelo pacote NuGet Packages;
  2. Crie o componente Panel como WFAPanel;
WindowsFormsAnimation.Controls.WFAPanel();
  1. Para usar a animação de exibição uso o Show;
panel1.Show(new WindowsFormsAnimation.Classes.Config(){ Delay = 1, Finish = 100, Value = 1 }, Animation.SLIDE);
  1. Para usar a animação de saída uso o Hide;
panel1.Hide(new WindowsFormsAnimation.Classes.Config(){ Delay = 1, Finish = 0, Value = 1 }, Animation.SLIDE);

USANDO INDEPENDENTE


  1. Instale a biblioteca pelo pacote NuGet Packages;
  2. Inicie o objeto WFAPanel;
WindowsFormsAnimation.Independents.WFAPanel WFAPanel1 = new WindowsFormsAnimation.Independents.WFAPanel();
  1. Para usar a animação de exibição uso o Show;
WFAPanel1.Show(new WindowsFormsAnimation.Classes.Config(){ Delay = 1, Finish = 100, Value = 1 }, Animation.SLIDE, panel2);
  1. Para usar a animação de saída uso o Hide;
WFAPanel1.Hide(new WindowsFormsAnimation.Classes.Config(){ Delay = 1, Finish = 0, Value = 1 }, Animation.SLIDE, panel2);

EVENTOS


  1. AnimationStateResponse é executado toda vez que a animação é finalizada;
private void Panel1_AnimationStateResponse(object sender, EventArgs e)
{
	EventStateArgs ev = (EventStateArgs)e;
}
  1. InAnimation é executado durante a animação;
private void Panel1_InAnimation(object sender, EventArgs e)
{
	EventStateArgs ev = (EventStateArgs)e;
}

SUPORTE


Siga-me para minhas próximas criações

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  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.0.0 480 7/28/2020

.NET Framework 4.7.2
Animação slide para panel Windows Forms.