Pysar.Avalonia 0.1.44

dotnet add package Pysar.Avalonia --version 0.1.44
                    
NuGet\Install-Package Pysar.Avalonia -Version 0.1.44
                    
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="Pysar.Avalonia" Version="0.1.44" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pysar.Avalonia" Version="0.1.44" />
                    
Directory.Packages.props
<PackageReference Include="Pysar.Avalonia" />
                    
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 Pysar.Avalonia --version 0.1.44
                    
#r "nuget: Pysar.Avalonia, 0.1.44"
                    
#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 Pysar.Avalonia@0.1.44
                    
#: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=Pysar.Avalonia&version=0.1.44
                    
Install as a Cake Addin
#tool nuget:?package=Pysar.Avalonia&version=0.1.44
                    
Install as a Cake Tool

Pysar.Avalonia

Avalonia integration for Pysar, a cross-platform report engine for .NET: avares:// application asset access, font registration and a scrollable, zoomable ReportView. It installs an AvaloniaReportPlatformHandler for file and font access.

Setup

Assets are AvaloniaResource items read through avares://:

AppBuilder.Configure<App>()
    .UsePlatformDetect()
    .UsePysar(pysar => pysar
        .AddFont("Fonts/Ubuntu-Regular.ttf", "Ubuntu")
        .AddFont("Fonts/Ubuntu-Bold.ttf", "Ubuntu", FontStyle.Bold));

Showing a report

<pysar:ReportView Report="{Binding Report}"
                    ZoomMode="FitWidth"
                    Zoom="{Binding Zoom}"
                    EffectiveZoom="{Binding EffectiveZoom}"
                    CurrentPage="{Binding CurrentPage}"
                    PageSpacing="24" />

On the desktop, Ctrl or Cmd with the wheel zooms around the pointer, a plain wheel scrolls, and a double click magnifies and returns. PageBorderColor and PageBorderThickness frame each page; PageSpacing is the gap between pages and does not scale with the zoom. Bind EffectiveZoom to show the zoom percentage — Zoom holds what was asked for, not what the view settled on.

Trackpad pinch on macOS is handled natively, in MacPinchMonitor. Avalonia delivers no pinch gesture on that platform, so the zoom comes from an AppKit local event monitor for NSEventTypeMagnify, reached through the Objective-C runtime. It is a no-op everywhere else.

Printing

Printing uses the same vector PDF pipeline as export:

var printer = new AvaloniaReportPrinter(PysarAvalonia.Renderer);
await printer.PrintAsync(builtReport);

The report must already have Build() called.

Documentation

License

MIT — see LICENSE.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.44 0 9/16/2026
0.1.41 31 9/15/2026
0.1.38 45 9/14/2026
0.1.34 50 9/13/2026
0.1.31 56 9/11/2026
0.1.24 103 9/6/2026
0.1.10 100 8/30/2026
0.1.0 95 8/30/2026

## Highlights

### Content assets under `Assets/`

Packaged Uno `Content` lives under `Assets/`. Report code still asks for `Fonts/`, `Images/`, and `Styles/`. `UsePysarAsync` preloads `ms-appx:///Assets/...` at startup so later reads stay synchronous.

### Report sharing

`PysarUno.Sharer` (`UnoReportSharer`) offers exported bytes to the host: a file download on WebAssembly, and open/share on desktop, Android, and iOS.

```csharp
var pdf = await PysarUno.ExportService.ExportAsync(builtReport, ExportFormat.Pdf);
await PysarUno.Sharer.ShareAsync(pdf, "report.pdf");