Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-winforms-pdf-viewersyncfusion winforms PDF viewer 搜索

Agent Skill

syncfusion-winforms-pdf-viewer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

公开资料未说明

下载量

110
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-winforms-pdf-viewer(syncfusion winforms PDF viewer 搜索)
来源仓库:https://github.com/syncfusion/pdf-viewer-sdk-skills
仓库路径:skills/syncfusion-winforms-pdf-viewer
安装命令:
npx skills add https://github.com/syncfusion/pdf-viewer-sdk-skills --skill syncfusion-winforms-pdf-viewer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/pdf-viewer-sdk-skills --skill syncfusion-winforms-pdf-viewer

简介

嵌入式 PDF 文档查看器,支持注释、缩放与页面跳转等基础阅读功能。

  • 适用于合同签署、报告查阅或任何需要内嵌文档的场景集成。
  • 技能抽象了底层渲染引擎差异,提供统一 API 接口简化调用。
  • 大文件加载时应分块渲染,避免 UI 线程阻塞造成假死现象。
  • 版权保护文档需集成 DRM 插件,防止未授权内容被非法提取。

SKILL.md

Syncfusion WinForms PdfViewer - UI Sample generator

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

Trigger keywords: "code", "snippet", "how to write", "Program.cs", "show me", "sample", "integrate", "example code", "generate code for", "create sample", "winforms pdfviewer".

Purpose: Generate clean, ready-to-use C# code snippets that directly insert into their WinForms application when working with Syncfusion WinForms PdfViewer control.

Workflow:

  1. Build the C# code using the snippets provided in the references/*.md files.
  2. Before generating the sample, ask the user whether the code should be:Integrated into an existing WinForms project, or Created as a new WinForms application.
  3. If the user chooses to create a new WinForms project, ask them which target framework they want to use: -.NET Framework (e.g., 4.6, 4.7, 4.8) — uses Syncfusion.PdfViewer.WinForms and targets the classic.NET Framework. -.NET /.NET Core (e.g.,.NET 8,.NET 10) — uses Syncfusion.PdfViewer.WinForms with net8.0-windows (or the selected version).
  4. Based on the user's choice: Generate the.csproj file with the correct value. Add the required NuGet packages. Tailor any framework-specific code, such as namespace imports, form initialization, startup code (Program.cs), and PDF Viewer setup, accordingly.
  5. Add only the APIs required to satisfy the user's requested functionality. Do not include optional APIs, additional.

Code References

All templates and snippets are in the references/ folder. Each file is a focused snippet or template the agent will combine when generating sample:

FileContents
view-pdfviewer.mdNuGet setup, add PdfViewerControl/PdfDocumentView, load PDF
saving-pdf-files.mdSave PDF via toolbar, programmatic save using LoadedDocument.Save(), BeginSave and EndSave events
printing-pdf-files.mdPrint PDF via toolbar, silent printing using Print(), customize print size (ActualSize, Fit, CustomScale), print orientation (Auto, Portrait, Landscape), hide print status dialog, BeginPrint, PrintProgress, and EndPrint events
extract-text.mdExtract text from a single page using ExtractText(pageIndex, out textLines), extract text from entire file using PageCount loop, extract text with line bounds via TextLines/TextLine, extract words with bounds via WordCollection/TextWord
pdf-rendering-engines.mdSwitch rendering engine using RenderingEngine property (PDFium default, SfPdf alternative), set custom PDFium binary path via ReferencePath for restricted-access environments
searching-text.mdSearch next/previous text instance using SearchNextText()/SearchPreviousText(), find all instances with bounds using FindText(), count total matches, enable/disable highlight all instances via TextSearchSettings.HighlightAllInstance, customize highlight colors via TextSearchSettings.CurrentInstanceColor/OtherInstanceColor
navigation.mdBookmark navigation, hyperlink handling, and page navigation (programmatic GoToBookmark(), HyperlinkClicked/HyperlinkMouseOver, GoToPageAtIndex())
localization.mdLocalize tooltip and context menu static text, default en-US localization keys table, add culture-specific Resx files (e.g., Syncfusion.PdfViewer.Windows.fr.resx), set custom assembly/namespace for localization using LocalizationManager.SetResources()
themes.mdApply built-in themes using ThemeName property (Office2016Colorful, Office2016Black, Office2016DarkGray, Office2016White, Office2019Colorful, HighContrastBlack), load theme assemblies via SkinManager.LoadAssembly(), reset to default theme
interaction-modes.mdSwitch cursor modes using CursorMode property — PdfViewerCursorMode.SelectTool for text selection (default), PdfViewerCursorMode.HandTool for panning/scrolling
error-handling.mdSubscribe to ErrorOccurred event, handle ErrorOccurredEventArgs.Message to log errors or display messages to users
magnifying.mdZoom to a specific percentage using ZoomTo(), get current zoom via ZoomPercentage, switch zoom modes using ZoomMode property (FitPage, FitWidth)
view-pdf-stream.mdLoad a PDF from a FileStream using the Load(stream) overload
document-information.mdAccess filename and file path of the loaded PDF via DocumentInformation.FileName and DocumentInformation.FilePath; get page count via PageCount
mouse-position.mdHandle PageClicked and PageMouseMove events to get page index and mouse position relative to the PDF page
host-wpf-pdfviewer-in-winforms.mdHost the WPF PdfViewer inside a WinForms app using ElementHost to access advanced features (annotations, form filling, signatures)
toolbar.mdShow/hide individual toolbar buttons (Open, Save, Zoom, Print, Pan) using ToolbarSettings.<Button>.IsVisible

Prerequisites

  • Development Environment:Visual Studio 2022 or Visual Studio insider 2026(recommended for.NET 10).
  • .NET Framework 4.5+ or.NET Core/NET 8+
  • Syncfusion WinForms NuGet Package: Syncfusion.PdfViewer.Windows

Documentations

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.41%
按下载量换算41

Claude

31.68%
按下载量换算35

Cursor

16.46%
按下载量换算18

Gemini CLI

8.64%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills