Dennkind.Framework 1.0.15-beta

Suggested Alternatives

Dennkind.Framework 1.1.5-beta

Additional Details

Newer package version is available.

This is a prerelease version of Dennkind.Framework.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Dennkind.Framework --version 1.0.15-beta
                    
NuGet\Install-Package Dennkind.Framework -Version 1.0.15-beta
                    
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="Dennkind.Framework" Version="1.0.15-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dennkind.Framework" Version="1.0.15-beta" />
                    
Directory.Packages.props
<PackageReference Include="Dennkind.Framework" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Dennkind.Framework --version 1.0.15-beta
                    
#r "nuget: Dennkind.Framework, 1.0.15-beta"
                    
#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.
#:package Dennkind.Framework@1.0.15-beta
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dennkind.Framework&version=1.0.15-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Dennkind.Framework&version=1.0.15-beta&prerelease
                    
Install as a Cake Tool

Dennkind-Framework

Description

The Dennkind Framework library provides frame and navigation controls for WPF applications. alt text

Usage

  1. Add the Dennkind.Framework.WPF.Controls namespace: xmlns:dennkind="clr-namespace:Dennkind.Framework.WPF.Controls;assembly=Dennkind.Framework

  2. Implement the Dennkind ApplicationFrameControl: <dennkind:ApplicationFrameControl x:Name="applicationFrameControl" />

  3. Initialize the ApplicationFrameControl in XAML or in Code-Behind: applicationFrameControl.HeaderLogo = "Dennkind"; applicationFrameControl.HeaderTitle = "Framework Demo"; applicationFrameControl.FooterVersion = "Dennkind Framework Demo v.1.0.0"; applicationFrameControl.FooterCopyright = "Copyright © Lukas Koch 2019";

  4. Add your pages to the ApplicationFrameControl: applicationFrameControl.AddPage(new DashboardPage(), dashboardIcon); applicationFrameControl.AddPage(new DocumentsPage(), documentsIcon);

  5. Display any page by using the name: applicationFrameControl.DisplayPage("dashboardPage");

Animations (Beta) only available in Dennkind Framework v.1.0.15-beta

Hide controls on startup by setting the IsShown property to false: applicationFrameControl.Header.IsShown = false; applicationFrameControl.Navigation.IsShown = false; applicationFrameControl.Content.IsShown = false; applicationFrameControl.Footer.IsShown = false;

Display controls by calling the FadeIn method: applicationFrameControl.Header.FadeIn(); applicationFrameControl.Footer.FadeIn(); applicationFrameControl.Footer.FadeIn(); applicationFrameControl.Content.FadeIn();

Hide the controls by calling the FadeOut method: applicationFrameControl.Header.FadeOut(); applicationFrameControl.Footer.FadeOut(); applicationFrameControl.Navigation.FadeOut(); applicationFrameControl.Content.FadeOut();

Source Code

Visit Dennkind Framework on GitHub:

Version 1.0.0 (Release):

https://www.nuget.org/packages/Dennkind.Framework/1.0.0

Changelog:

Version 1.1.0 (Release) In Progress:

  • Animations added to the header, navigation, content and footer controls.

Version 1.0.0 (Release):

  • ApplicationFrameControl
  • HeaderControl
  • NavigationControl
  • ContentControl
  • FooterControl

Dennkind Framework Trello Board:

Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net46-client is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has 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.

Animations added to the header, navigation, content and footer controls.