WPF.CustomControls.LoadEase 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package WPF.CustomControls.LoadEase --version 1.0.0
NuGet\Install-Package WPF.CustomControls.LoadEase -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="WPF.CustomControls.LoadEase" Version="1.0.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.0.0
#r "nuget: WPF.CustomControls.LoadEase, 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 WPF.CustomControls.LoadEase as a Cake Addin
#addin nuget:?package=WPF.CustomControls.LoadEase&version=1.0.0

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

CustomLoader

The goal of this project is to design and implement a custom loader that can efficiently load and prepare a particular type of data or resource for use by a target application or system.

Process to use WaitIwndow in WPF

1.Install nuget package

"WPF.CustomControls.LoadEase"

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. Example of Load waitwindow on page

<Window x:Class="WpfApp1.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:local="clr-namespace:WpfApp1" xmlns:WaitWindow="clr-namespace:WPF.CustomControls.LoadEase;assembly=WPF.CustomControls.LoadEase" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"> <WaitWindow:AdornedControl Name="LoadingAdorner">

    <WaitWindow:AdornedControl.AdornerContent>
        <WaitWindow:DynamicPulseLoader ExpectedLoaderHeight="180" ExpectedLoaderWidth="180" LoaderText="Loading.."  LoaderTextColor="OrangeRed"   />
    </WaitWindow:AdornedControl.AdornerContent>
    <Grid>
        
        <TextBlock Text="Demo"/>
    </Grid>
</WaitWindow:AdornedControl>

</Window>


========================CompanyLogoSpinner Example=====================================================

<Window x:Class="TestLoader.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 Name="LoadingAdorner">

    <WaitWindow:AdornedControl.AdornerContent>
        <WaitWindow:CompanyLogoSpinner LoaderBaseColor="Black" LoaderForegroundColor="OrangeRed" LoaderStrokeThickness="12" ImageNameWithAssemblyPath="pack://application:,,,/TestLoader;component/Images/Logo.png" LoaderFontSize="30"  ExpectedLoaderHeight="380" ExpectedLoaderWidth="380" LoaderText="Loading..."  LoaderTextColor="White"   />
    </WaitWindow:AdornedControl.AdornerContent>
    <Grid>
    
        <TextBlock Text="Demo"/>
    </Grid>
</WaitWindow:AdornedControl>

</Window>

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

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 206 11/6/2023
1.2.0.2 134 10/1/2023
1.2.0.1 138 9/23/2023
1.0.2 129 9/21/2023
1.0.0 123 9/16/2023

Custom loaders find frequent application in software development across a range of purposes, including data loading, resource management, and dependency resolution. This encompasses a diverse set of wait windows that users can employ, aligning with their chosen theme in a WPF (Windows Presentation Foundation) application.