WPF.CustomControls.LoadEase 1.3.0

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

// Install WPF.CustomControls.LoadEase as a Cake Tool
#tool nuget:?package=WPF.CustomControls.LoadEase&version=1.3.0

Process to use WaitIwndow in WPF*********

1.Install-Package

Install Nuget package "NuGet\Install-Package WPF.CustomControls.LoadEase -Version 1.3.0.0" with the help of package manager console

2.To Show Loader use the following method

====>LoaderHandler.ShowLoader();

3.To Hide Loader use the following method

====> LoaderHandler.HideLoader();

4.Reference in WPF window form

====> xmlns:WaitWindow="clr-namespace:WPF.CustomControls.LoadEase;assembly=WPF.CustomControls.LoadEase"

  1. Load waitwindow on page

<Window x:Class="WpfCustomLoaderTesting.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:WaitWindow="clr-namespace:WPF.CustomControls.LoadEase;assembly=WPF.CustomControls.LoadEase" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"> <WaitWindow:AdornedControl x:Name="LoadingAdorner">

    <WaitWindow:AdornedControl.AdornerContent>
        
        
        <WaitWindow:MicrosoftLoader LoaderHeaderIcon="pack://application:,,,/WpfCustomLoaderTesting;component/Resource/Images/LoaderHeaderIcon.jpg" LoaderOverColor="Black" LoaderFontSize="10" LoaderBodyColor="Black" LoaderHeaderFontSize="20" LoaderColor="OrangeRed" LoaderHeaderText="Wait Window" LoaderHeaderTextColor="White" LoaderHeaderTheme="Blue" LoaderText="If you're looking to create a loader similar to those found in Microsoft Visual Studio using WPF and C#, you can create a custom loader control with a design inspired by Visual Studio's loading animations. Here's a simplified example of how you can create such a loader"  LoaderTextColor="White"   />
    </WaitWindow:AdornedControl.AdornerContent>
    <Grid>
        
        <TextBlock Text="Demo"/>
    </Grid>
</WaitWindow:AdornedControl>

</Window>

6.Utilizing dependency injection in conjunction with the MVVM pattern is also possible.download the project from github.It contains all information.IN video i have provided the link for it.

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.

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.3.0 184 11/6/2023
1.2.0.2 133 10/1/2023
1.2.0.1 137 9/23/2023
1.0.2 128 9/21/2023
1.0.0 123 9/16/2023

Additional new loaders have been introduced along with various enhancements to the dependency injection system.