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

syncfusion-maui-dataform同步融合 maui 数据表

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

832

周安装

34

GitHub Stars

54

下载量

269
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/maui-ui-components-skills --skill syncfusion-maui-dataform

简介

同步融合 maui 数据表单组件,辅助结构化数据录入与验证。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中进行数据整理与分析工作。
  • 通过 GitHub 仓库安装,使用通用技能管理机制集成。
  • 使用时需明确数据来源与字段含义,避免误用样本代替全量事实。
  • syncfusion-maui-dataform 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing.NET MAUI DataForm (SfDataForm)

The Syncfusion.NET MAUI DataForm (SfDataForm) is a comprehensive form builder control that automatically generates data entry forms from data objects. It provides built-in editors, validation, flexible layouts, and extensive customization options for creating professional data collection and editing interfaces.

When to Use This Skill

Use this skill when you need to:

  • Create data entry forms (login, registration, contact, employee forms, etc.)
  • Edit data objects with automatic form generation from model classes
  • Validate user input with built-in or custom validation rules
  • Customize form editors (text, numeric, date, dropdown, etc.)
  • Layout forms in linear or grid arrangements
  • Group form fields with collapsible sections
  • Localize forms for multiple languages
  • Support RTL layouts for right-to-left languages
  • Implement floating label designs for modern UIs
  • Handle form commits with different modes (LostFocus, PropertyChanged, Manual)

Typical scenarios:

  • User registration and profile editing
  • Business data entry (orders, invoices, contacts)
  • Settings and configuration screens
  • Survey and questionnaire forms
  • Search and filter forms

Component Overview

Key Features:

  • Auto-generation: Automatically creates form editors from data object properties
  • 10+ Built-in Editors: Text, numeric, date, time, dropdown, checkbox, switch, masked entry, and more
  • Validation: Built-in support for data annotations and custom validation
  • Flexible Layouts: Linear or grid layouts with grouping support
  • Customization: Custom editors, styling, and behavior modification
  • Localization: Multi-language support with resource files
  • Accessibility: RTL support and screen reader compatibility

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

Learn the fundamentals of setting up and using DataForm:

  • NuGet package installation for Visual Studio, VS Code, and Rider
  • Handler registration in MauiProgram.cs
  • Creating data objects and view models
  • Binding the DataObject property
  • First DataForm implementation
  • DataForm sizing in StackLayout containers
  • Basic configuration and setup

When to read: Starting a new project with DataForm, or need installation guidance.


Built-in Editors

📄 Read: references/built-in-editors.md

Understand the 10+ built-in editor types and automatic generation:

  • Text editors (Text, Multiline, Password)
  • Numeric editor (SfNumericEntry)
  • Date and Time editors (DatePicker, TimePicker)
  • Boolean editors (CheckBox, Switch)
  • Selection editors (Picker, ComboBox, AutoComplete, RadioGroup)
  • MaskedText editor for phone numbers and credit cards
  • Editor generation rules based on data types
  • DataFormItem types and input control mapping
  • DataType attributes for editor selection

When to read: Need to understand which editor is generated for each property type, or want to see available editor options.


Custom Editors

📄 Read: references/custom-editors.md

Learn to configure and create custom editors:

  • Explicit editor configuration (switching between editor types)
  • Changing editor types for properties
  • Custom editor view implementation
  • ItemManager customization
  • InitializeDataEditor method override
  • Custom control integration
  • Editor property mapping and binding
  • Advanced editor customization scenarios

When to read: Need to change the default editor for a property, or implement a completely custom editor control.


Validation

📄 Read: references/validation.md

Implement comprehensive data validation:

  • Built-in validation attributes (Required, StringLength, Range, EmailAddress, etc.)
  • Data annotation validation
  • Validation modes (LostFocus, PropertyChanged, Manual)
  • DataFormDateRange attribute for date validation
  • Custom validation logic implementation
  • Validation error display and styling
  • Programmatic validation with Validate() method
  • ValidationLabel customization
  • Real-time vs on-submit validation

When to read: Need to validate form input, show error messages, or implement custom validation rules.


Data Annotations

📄 Read: references/data-annotations.md

Configure DataForm behavior declaratively with attributes:

  • Display attributes (Name, Prompt, GroupName, AutoGenerateField)
  • Order attribute for field ordering
  • Formatting attributes (DisplayFormat)
  • ReadOnly and Editable attributes
  • DataType attribute for editor type selection
  • Visibility control attributes
  • Custom attribute implementation
  • Attribute combinations and precedence rules

When to read: Want to configure DataForm using attributes on model properties, or need to control field generation.


Layout

📄 Read: references/layout.md

Organize form fields with flexible layout options:

  • Linear layout (one field per row, default)
  • Grid layout with ColumnCount property
  • Label positioning (Left, Top)
  • ItemsOrderInRow for custom column ordering
  • Row and column span configuration
  • Layout customization techniques
  • Responsive layout strategies
  • Per-group layout configuration

When to read: Need to arrange form fields in multiple columns, or customize the form layout structure.


Grouping

📄 Read: references/grouping.md

Group related form fields together:

  • GroupName attribute for field grouping
  • Group header customization
  • Collapsible/expandable groups
  • Per-group layout (linear vs grid)
  • Group ordering and appearance
  • GenerateDataFormItem event for dynamic groups
  • Nested grouping strategies

When to read: Need to organize form fields into logical sections or collapsible groups.


DataForm Settings

📄 Read: references/dataform-settings.md

Configure global DataForm properties and appearance:

  • AutoGenerateItems property (auto vs manual generation)
  • Items collection for manual item creation
  • Label settings (width, position, styling)
  • Editor height and spacing configuration
  • Padding and margin properties
  • Background and visual appearance
  • ItemManager customization for global behavior
  • Theme integration

When to read: Need to customize the overall appearance or behavior of the DataForm control.


Editing Behavior

📄 Read: references/editing.md

Control when and how data is committed:

  • Commit modes (LostFocus, PropertyChanged, Manual)
  • CommitMode property configuration
  • Programmatic commit with Commit() method
  • Read-only fields and disabled editors
  • ValueChanged event handling
  • Updating data objects programmatically
  • Two-way data binding behavior
  • Form reset and cancel operations

When to read: Need to control when form changes are saved to the data object, or implement save/cancel logic.


Floating Label Layout

📄 Read: references/floating-label-layout.md

Implement modern floating label designs:

  • Floating label feature overview
  • Enabling floating labels on editors
  • Label animation behavior (float on focus)
  • Float mode configuration options
  • Styling floating labels
  • Best practices for floating label UX
  • Compatibility with different editor types

When to read: Want to implement Material Design-style floating labels for a modern look.


Localization

📄 Read: references/localization.md

Support multiple languages in forms:

  • Localization overview and setup
  • Resource file (.resx) configuration
  • Culture-specific strings and messages
  • Localized error messages
  • Localized labels and prompts
  • Runtime language switching
  • Platform-specific localization considerations

When to read: Need to create forms in multiple languages or support international users.


Right-to-Left Support

📄 Read: references/right-to-left.md

Implement RTL layout for Arabic, Hebrew, and other RTL languages:

  • RTL support overview
  • Enabling RTL layout with FlowDirection
  • RTL behavior for editors and controls
  • RTL for labels and validation messages
  • Cultural considerations for RTL
  • Testing and debugging RTL layouts

When to read: Supporting right-to-left languages like Arabic or Hebrew.


适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.5%
按下载量换算93

Claude

29.95%
按下载量换算81

Cursor

17.56%
按下载量换算47

Gemini CLI

9.31%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills