WPF.CustomControls.LoadEase
1.0.0
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
<PackageReference Include="WPF.CustomControls.LoadEase" Version="1.0.0" />
paket add WPF.CustomControls.LoadEase --version 1.0.0
#r "nuget: WPF.CustomControls.LoadEase, 1.0.0"
// 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"
- 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- FontAwesome.WPF (>= 4.7.0.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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.