WPF.CustomControls.LoadEase
1.0.2
See the version list below for details.
dotnet add package WPF.CustomControls.LoadEase --version 1.0.2
NuGet\Install-Package WPF.CustomControls.LoadEase -Version 1.0.2
<PackageReference Include="WPF.CustomControls.LoadEase" Version="1.0.2" />
paket add WPF.CustomControls.LoadEase --version 1.0.2
#r "nuget: WPF.CustomControls.LoadEase, 1.0.2"
// Install WPF.CustomControls.LoadEase as a Cake Addin #addin nuget:?package=WPF.CustomControls.LoadEase&version=1.0.2 // Install WPF.CustomControls.LoadEase as a Cake Tool #tool nuget:?package=WPF.CustomControls.LoadEase&version=1.0.2
Process to use WaitIwndow in WPF********* 1.Add following DLL in your projects
Install Nuget package "NuGet\Install-Package WPF.CustomControls.LoadEase -Version 1.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>
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.
In this package release, we've introduced a new custom loader that comes with extra properties.