Fabric_Framework 1.0.19

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

// Install Fabric_Framework as a Cake Tool
#tool nuget:?package=Fabric_Framework&version=1.0.19

Fabric Framework

What you will find in this package

This framework will allow you to build a .net6.0 desktop application including:

  • A predefined application window
  • A command ribbon in a style like Office
  • A panel manager similar to that of Visual Studio.
  • An automated module recognition and addition engine (See sample solution in GitHub.)

But also useful components like:

  • Access to common databases such as MSSQL and My SQL/Maria DB or other ODBC compatible including attribute rules.
  • No SQL data management engine. (ObjectStore)
  • In-Memory To/From disk data management engine. (MemoryStore)
  • AES encryption/decryption tools.
  • A well-oiled MVVM mechanism.
  • Serializers from/to JSON or XML.
  • Events aggregator.
  • Task executor (Queued class).
  • Logger.
  • Task progress dialog box.
  • Resource reader.
  • Keyboard interceptor (Keyboard Hook).
  • Registry tool.
  • Method manager to save your Action and make calls on the fly. (Commands class)

How to install and use this framework

  1. Create a blank .net6.0 WPF (desktop) project
  2. Delete all the classes already created as well as the base window.
  3. Install this package
  4. Create an entry point class with a main method as follows (note the [STAThread] annotation)
[STAThread]
public static void Main(string[] args)
{
  IFrameworkApplication frameworkApplication = ApplicationFactory.Create("Sample");
  frameworkApplication.Run();
}
  1. Add your classes and components and register them in the XML file.

For what follows, I'm sure you'll find what you're looking for in the basic sample code on GitHub...

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos 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.

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.19 163 5/10/2023
1.0.18 159 4/21/2023
1.0.17 162 4/21/2023
1.0.16 160 4/21/2023
1.0.15 182 4/20/2023
1.0.14 240 3/24/2023
1.0.13 247 3/20/2023
1.0.8 341 2/24/2023
1.0.7 333 2/24/2023
1.0.6 337 2/24/2023
1.0.5 332 2/24/2023
1.0.4 329 2/23/2023
1.0.3 422 12/12/2022
1.0.2 472 12/1/2022

none