LazyApiPack.XmlTools.Wpf 0.1.7.1

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

// Install LazyApiPack.XmlTools.Wpf as a Cake Tool
#tool nuget:?package=LazyApiPack.XmlTools.Wpf&version=0.1.7.1

About this project

This library provides support for WPF specific type serialization.

How to serialize with WPF support

var model = new SimpleDataModel();

new ExtendedXmlSerializer<SimpleDataModel>()
	.UseWpfTypeSupport()
	.Serialize(model, "[PathToFile]");

How to deserialize with WPF support

var model = new ExtendedXmlSerializer<SimpleDataModel>()
	.UseWpfTypeSupport()
	.Deserialize("[PathToFile]");

Supported Types

  • PointCollection
  • Point
  • Brush
  • Color
  • StrokeCollection
  • Thickness
  • BitmapImage
  • Rect
  • DrawingAttributes
  • StylusPointCollection
  • TextDecoration
  • Pen
  • DashStyle
  • MatrixTransform
  • RotateTransform
  • ScaleTransform
  • SkewTransform
  • TranslateTransform
Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows 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
0.1.7.1 164 5/22/2023
0.1.7 347 12/4/2022
0.1.4 313 11/18/2022
0.1.2 323 11/15/2022
0.1.1 318 11/15/2022
0.0.1 358 11/3/2022

Bugfixes