DotNet7.Wpf.CustomLoader 1.0.0

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

// Install DotNet7.Wpf.CustomLoader as a Cake Tool
#tool nuget:?package=DotNet7.Wpf.CustomLoader&version=1.0.0

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.

Complete Tutorial :https://www.youtube.com/watch?v=k-akGF4PPNc

*Process to use WaitIwndow in WPF

1.Install nuget package

"DotNet7.Wpf.CustomLoader"

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:DotNet7.Wpf.CustomLoader;assembly=DotNet7.Wpf.CustomLoader"

5.Example of Load waitwindow on page <Window x:Class="Dotnet7WpfLoaderExample.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:Dotnet7WpfLoaderExample" xmlns:WaitWindow="clr-namespace:DotNet7.Wpf.CustomLoader;assembly=DotNet7.Wpf.CustomLoader" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800">

    <WaitWindow:AdornedControl.AdornerContent>
        			 
		
		
        <WaitWindow:StreamlineSpinner LoaderOverColor="Transparent"  ExpectedLoaderHeight="180" LoaderFontSize="15"  ExpectedLoaderWidth="180" LoaderText="Loading.."  LoaderTextColor="Red"   />
        
	</WaitWindow:AdornedControl.AdornerContent>
	
    <Grid>
	
        
		
        <TextBlock Text="Demo"/>
		
        <Button Content="Test Loader" Height="40" Width="200" Margin="120,177,480,217" Command="{Binding ShowLoaderWithoutInstance}"/>
    
	</Grid>
	
</WaitWindow:AdornedControl>

</Window>

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0-windows7.0

    • 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 262 11/21/2023

This software encompasses a range of custom loaders designed for diverse application scenarios, tailored for compatibility with .NET 6,7.