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
<PackageReference Include="WPF.CustomControls.LoadEase" Version="1.3.0" />
paket add WPF.CustomControls.LoadEase --version 1.3.0
#r "nuget: WPF.CustomControls.LoadEase, 1.3.0"
// 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"
- 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 | 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.
Additional new loaders have been introduced along with various enhancements to the dependency injection system.