agentsclimarketplace

Syncfusion wpf pdf viewer

Skill syncfusion/pdf-viewer-sdk-skills/skills/syncfusion-wpf-pdf-viewer

This repository contains agent prompts for creating skills and organizing AI agent capabilities.

Install
npx -y skills add syncfusion/pdf-viewer-sdk-skills --skill syncfusion-wpf-pdf-viewer

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create sample application using Syncfusion WPF PdfViewer. Implements Syncfusion WPF PdfViewer for embedding, configuring, and customizing PDF viewing in WPF applications. Generates C# and XAML code for PDF display, navigation, zooming, text selection, search, annotations, toolbar customization, and PDF event handling using Syncfusion's WPF PDF viewing components.

SKILL.md

10.5 KB, ~2.5k tokens by cl100k_base, as published. Nobody here has run it

Syncfusion WPF PDFViewer – UI Sample Generator

Generate C# Code for the User's Project (default)

Trigger keywords: "how to", "code sample", "show me", "example", "snippet", "integrate", "wpf PdfViewer", "create sample".

Purpose: Generate clean, ready-to-use C# and XAML code snippets that users can directly insert into their WPF applications when working with the Syncfusion WPF PdfViewer control.

Workflow:

  1. Build the C# code using snippets provided in the references/*.md files.

  2. Before generating the sample, ask the user whether the code should be inserted into an existing XAML file in their WPF project or created as a new WPF project application.

  3. If the user chooses to create a new WPF project, ask them which target framework they want to use:

    • .NET Framework (e.g. 4.6, 4.7, 4.8) — uses Syncfusion.PdfViewer.WPF and targets classic .NET Framework.
    • .NET Core / .NET (e.g., .NET 8, .NET 10) — uses Syncfusion.PdfViewer.WPF with <TargetFramework>net8.0-windows</TargetFramework> (or the selected version).
    • Based on the user's choice, generate the .csproj file with the correct <TargetFramework> value, and tailor any framework-specific code (e.g., namespace imports, NuGet package versions, startup code) accordingly.
  4. XAML generation rules — MANDATORY: analyze the reference files BEFORE writing any XAML:

    ⚠️ STRICT RULE — NO EXCEPTIONS: Open and read the relevant references/*.md file(s) for the requested feature before producing any XAML. Ask yourself: "Does the reference file contain any XAML markup for this feature?"

    • YES → XAML exists in reference → include only those exact XAML elements shown in the snippet.
    • NO → reference is C# onlyMainWindow.xaml MUST contain only <syncfusion:PdfViewerControl> inside a <Grid>. Stop. Do not add anything else.

    Checklist to run before every XAML output:

    • I have opened the relevant references/*.md file.
    • I have confirmed whether it contains XAML or is C#-only.
    • If C#-only: my XAML contains nothing beyond <syncfusion:PdfViewerControl x:Name="pdfViewer"/> inside <Grid>.
    • If XAML exists in reference: I am copying only those elements — not inventing new ones.

    Forbidden (when reference has no XAML): <Button>, <ComboBox>, <Slider>, <StackPanel>, <TextBlock>, <Grid.RowDefinitions>, or any UI element that does not appear verbatim in the reference snippet.

    Known C#-only features (no XAML must be generated):

    • Ink / shape / stamp / text / highlight annotations (annotation.md) — all settings are C# only.
    • Magnifying / zoom level (magnifying.md) — C# only.
    • Interaction mode (interaction-mode.md) — C# only.
    • Text selection (text-selection.md) — C# only.
    • PDF layers (pdf-layers.md) — C# only.
    • Redaction (redaction.md) — C# only.
    • Print (print.md) — C# only.
    • Export image (export-image.md) — C# only.
    • Saving PDF (saving-pdf-files.md) — C# only.

    Known features that DO require XAML (sourced from references):

    • Commands (commands.md): navigation/zoom/annotation/undo/redo/print/unload buttons use Command="{Binding ElementName=..., Path=...}".
    • Toolbar items (toolbar-items.md): classic style requires Style="{StaticResource SyncfusionPdfViewerCustomControlStyle}" on <syncfusion:PdfViewerControl>.

    All XAML additions must be placed inside the same <Grid> that hosts <syncfusion:PdfViewerControl>, using a <StackPanel> or <Grid> sub-layout only when the reference snippet implies it.

  5. Add only the APIs required to satisfy the user's requested functionality. Do not include optional APIs, additional.

  6. C# language version compatibility: When the target framework is .NET Framework (e.g., 4.6, 4.7, 4.8), the default C# language version is 7.3. The generated C# code MUST NOT use any C# 8.0+ language features. Specifically, do NOT use:

    • Switch expressions (x switch { ... })
    • Nullable reference types (string?, #nullable enable, object?)
    • Default interface implementations
    • Ranges and indices (^1, 1..^1)
    • ??= null-coalescing assignment Use if/else or traditional switch statements instead of switch expressions. Use regular null checks (if (x != null)) instead of nullable reference type syntax.

Code References

All templates and operation snippets live in references/*.md. Each file is a focused snippet or template the agent will combine when generating samples.

FilePurpose
Load-sample.mdLoad and unload PDFs using file paths, streams, or PdfLoadedDocument (encrypted or not); support async loading, MVVM binding, password handling, loading indicator customization, and theme application.
navigation.mdNavigate PDF pages using index‑ or number‑based APIs; retrieve page state information; scroll programmatically; manage thumbnails and bookmarks; and handle hyperlink navigation events.
annotation.mdEnable, customize, and manage all annotation types; handle annotation events; programmatically select, hide, lock, or delete annotations; control comments panel, authorship, hyperlinks, and selection visuals.
pdf-rendering.mdConfigure the PDF rendering engine by switching between PDFium and SfPdf and setting the required ReferencePath.
text-extraction-engine.mdSelect the text extraction engine (PDFium or SfPdf) to control text extraction behavior.
print.mdPrint PDFs with silent or dialog options; configure printers, page size, scaling, orientation, page range, paper source, and document name; and handle print lifecycle events.
export-image.mdExport PDF pages or page ranges as images (JPG, PNG, TIFF, BMP) with control over size, DPI, aspect ratio, and transparency.
import-export-annotations.mdImport and export annotations using FDF or XFDF formats.
extract-text-from-pdf.mdExtract text content and bounding information from pages or the entire document.
form-filling.mdHandle AcroForm fields: manage form events, show or hide icons, import/export form data, and add or edit form fields programmatically.
pdf-layers.mdAccess and manage PDF layers by toggling visibility, enabling or disabling layers, and controlling the Layers pane UI.
redaction.mdApply redactions by marking regions, customizing appearance, and handling redaction events.
pdf-coordinates.mdConvert between coordinate systems, retrieve scroll offsets, and zoom into specific page regions.
organize-pages.mdRotate, reorder, and remove pages using page organizer features.
handwritten-signature.mdCapture handwritten signatures, customize appearance, handle signature events, and flatten signatures on save.
interaction-mode.mdSwitch viewer interaction modes such as text selection, panning, and marquee zoom using cursor settings.
pdf-pages.mdCustomize page appearance, handle page interaction events, and convert pixel coordinates to PDF points.
saving-pdf-files.mdSave edited PDFs, detect unsaved changes, cancel save operations, handle save events, and prompt before closing with pending edits.
magnifying.mdControl zoom behavior including zoom levels, fit modes, limits, zoom-to-rectangle, toolbar visibility, and zoom change events.
searching-text.mdSearch and highlight text, navigate results, retrieve match bounds and text details, support multi-line search, and control search UI and availability.
text-selection.mdDetect text selection completion, retrieve selected text and bounds, customize highlight color, enable or disable selection, and clear selections programmatically.
localization.mdLocalize the PDF Viewer UI using .resx resources and culture settings.
customize-contextmenu.mdCustomize context menus by adding, removing, hiding items, and handling menu click events.
commands.mdUse and bind built‑in WPF commands for navigation, zoom, search, annotations, undo/redo, printing, saving, and unloading documents.
toolbar-items.mdCustomize viewer UI by showing or hiding toolbars, panels, buttons, menus, notification bars, and switching toolbar styles.

Prerequisites

  1. Development Environment: Visual Studio 2022 or Visual Studio Insider 2026 (recommended for .NET 10).
  2. NET Framework 4.5+ or .NET Core/.NET 8+ with WPF support.
  3. Syncfusion WPF NuGet Packages: Syncfusion.PdfViewer.WPF

Theme NuGet Packages

To apply a built-in theme to the WPF PdfViewerControl using SfSkinManager, install the NuGet package that matches the desired theme:

Theme NameRequired NuGet Package
FluentLightSyncfusion.Themes.FluentLight.WPF
FluentDarkSyncfusion.Themes.FluentDark.WPF
MaterialLightSyncfusion.Themes.MaterialLight.WPF
MaterialDarkSyncfusion.Themes.MaterialDark.WPF
MaterialLight3Syncfusion.Themes.MaterialLight3.WPF
MaterialDark3Syncfusion.Themes.MaterialDark3.WPF
Office2019ColorfulSyncfusion.Themes.Office2019Colorful.WPF
Office2019BlackSyncfusion.Themes.Office2019Black.WPF
Office2019WhiteSyncfusion.Themes.Office2019White.WPF
Office2019DarkGraySyncfusion.Themes.Office2019DarkGray.WPF
Windows11LightSyncfusion.Themes.Windows11Light.WPF
Windows11DarkSyncfusion.Themes.Windows11Dark.WPF

Note: Install only the NuGet package corresponding to the theme the user wants to apply. Theme support requires Syncfusion.SfSkinManager.WPF, which is included as a dependency of the theme packages.

Refer to: Apply theme using SfSkinManager | WPF PdfViewer Theme

Documentations

WPF PdfViewer overview

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.