Epsiloner.Wpf.Core 1.2.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Epsiloner.Wpf.Core --version 1.2.0
NuGet\Install-Package Epsiloner.Wpf.Core -Version 1.2.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="Epsiloner.Wpf.Core" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Epsiloner.Wpf.Core --version 1.2.0
#r "nuget: Epsiloner.Wpf.Core, 1.2.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 Epsiloner.Wpf.Core as a Cake Addin
#addin nuget:?package=Epsiloner.Wpf.Core&version=1.2.0

// Install Epsiloner.Wpf.Core as a Cake Tool
#tool nuget:?package=Epsiloner.Wpf.Core&version=1.2.0

WPF related things

Product Compatible and additional computed target framework versions.
.NET net5.0-windows7.0 is compatible.  net6.0-windows was computed.  net7.0-windows was computed.  net8.0-windows was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 is compatible.  net471 is compatible.  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.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Epsiloner.Wpf.Core:

Package Downloads
Epsiloner.OptionsModule The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Options module for client side application that can have separate sections and these sections can be user specific or global. Can be saved to file and be loaded from file.

Epsiloner.Wpf.Keyboard The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides manager for keybinding where key gesture can be configured by user.

Epsiloner.Wpf.Navigation The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Epsiloner.Wpf.Navigation is a framework similar to Prism for building loosely coupled, maintainable, testable XAML application in WPF with objects as parameters. Provides a design pattern that are helpful in writing well-structured and maintainable applications. It allows to have each page in separate project with dynamic registration of each page and ability to correctly navigate to each page by defining classes (that implements INavigationTarget) with corresponding parameters. For example, Epsiloner.Wpf.Navigation allows you to use an abstraction for navigation that is unit testable, but that layers on top of the platform concepts and APIs for navigation so that you can fully leverage what the platform itself has to offer, but done in the MVVM way. Epsiloner.Wpf.Navigation is designed to perform navigation from any place, but most useful to use from ViewModels. Epsiloner.Wpf.Navigation is a fully open source project. I appreciate any input from outside - ideas / wishes / bugs / bug fixes / etc..

Epsiloner.Wpf.Behaviors The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

WPF Behavior related things

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 486 3/28/2021
1.1.2 439 3/27/2021
1.1.1 444 3/27/2021
1.0.16 2,406 12/16/2019
1.0.15 518 12/12/2019
1.0.13 509 11/27/2019
1.0.12 529 11/19/2019
1.0.11 511 11/18/2019
1.0.10 808 10/2/2019
1.0.9 527 9/16/2019
1.0.8 868 8/19/2019
1.0.7 599 6/23/2019
1.0.6 3,454 4/19/2019
1.0.5 1,860 2/10/2019
1.0.4 822 11/8/2018
1.0.2 743 8/27/2018
1.0.1 1,548 8/11/2018
1.0.0 804 8/9/2018

v1.2.0:
       Added gestures and KeyBinding functionality from Epsiloner.Wpf.Keyboard that now is obsolete.
       v1.1.0:
       Removed all Behaviors related code as it is now a separate NuGet package: https://github.com/Epsil0neR/Epsiloner.Wpf.Behaviors
       Added NET5.0-windows support.
       Updated Epsiloner.Core refence to latest 1.0.22
       v1.0.15 + v1.0.16:
       ObservableCollection`T - fixed small bug in CollectionChanged event raising.
       v1.0.14:
       ObservableCollection`T - improved method CollectionChanged event raising.
       v1.0.13:
       Introduced xmlns namespace and default prefix.
       TextBlockService - service for TextBlock control that provides few attached dependency properties.
       v1.0.12:
       GridColumnsForItemsBehavior renamed to SmartGridBehavior.
       SmartGridBehavior added caching, fixed bugs with dispatcher.
       v1.0.11:
       GridColumnsForItemsBehavior that lets use Grid as table with rows by specifying maximum columns per row, otherwise all items will be in same row.
       v1.0.10:
       Removed DependsOnAttribute to use System.Windows.Markup.DependsOnAttribute instead.
       v1.0.9
       Added ViewModelUtil that lets inject ViewModel logic anywhere.
       ViewModel is now uses ViewModelUtil inside to still have unified logic for setting properties.
       v1.0.8
       Added DependsOnAttribute that lets add property dependance when another property changes (works only with ViewModel.Set method).
       v1.0.7
       Added AutoFocusBehavior.
       v1.0.6
       Fixed documentation file.
       v1.0.5
       Fixing bug with too early selection of added item.
       Renamed collections - now they are without 'Wrap' postfix.
       Added support to .NET v4.5, v4.6
       Added MultiStyleExtension that allows to merge multiple styles into 1.
       Added KeyboardNavigationBehavior that allows to navigate in any list of items with keyboard.
       Added ApplyStyleForSelectedBehavior that allows to apply style for selected item.