Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

syncfusion-maui-numeric-entry同步融合毛伊数字输入

Agent Skill

syncfusion-maui-numeric-entry 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

34

GitHub Stars

54

下载量

283
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • syncfusion-maui-numeric-entry 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing.NET MAUI Numeric Entry

The Syncfusion.NET MAUI Numeric Entry control is designed to deliver a user-friendly and advanced input experience for numeric data. It supports a broad range of numeric formats, including currency, percentages, decimals, and other configurable number types. With its rich set of features, the control enhances the overall user experience while simplifying numeric input validation and formatting.

When to Use This Skill

Use this skill when users need to:

  • Accept numeric input with validation and formatting
  • Create currency, percentage, or decimal input fields
  • Implement value increment/decrement with up/down buttons
  • Restrict numeric values within a minimum and maximum range
  • Format numeric values with culture-specific patterns
  • Provide numeric input with keyboard shortcuts (arrow keys, page keys)
  • Build price entry fields, quantity selectors, or rating systems
  • Create age inputs, discount calculators, or measurement fields
  • Implement read-only numeric displays with button controls
  • Add modern translucent glass effects to numeric inputs

Component Overview

The Syncfusion.NET MAUI Numeric Entry (SfNumericEntry) is a specialized input control designed for numeric data entry with advanced features:

Key Capabilities

  • Numeric Validation: Restricts alphabetic input, validates on Enter key or focus loss
  • Format Support: Currency (C), Percentage (P), Decimal (N), and custom formats
  • Value Controls: Up/down buttons, keyboard arrows, mouse scrolling for value changes
  • Range Restrictions: Enforce minimum and maximum value constraints
  • Customization: Full control over appearance, fonts, colors, borders, and buttons
  • Culture Support: Adapt to different regional number formats
  • Accessibility: WCAG compliance with AutomationId support

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

When to read: Setting up Numeric Entry for the first time, need basic implementation

Topics covered:

  • Create.NET MAUI project
  • Install Syncfusion.Maui.Inputs NuGet package
  • Register handler in MauiProgram.cs with ConfigureSyncfusionCore()
  • Add namespace and basic Numeric Entry control (XAML/C#)
  • Edit values with validation on Enter key or focus loss
  • Change number format with CustomFormat property
  • Accept or restrict null values with AllowNull
  • UI customization (PlaceholderColor, TextColor, Font properties)
  • Caret and selection control (CursorPosition, SelectionLength)
  • Methods: Focus(), Unfocus()
  • Events: Focused, Unfocused with FocusEventArgs

Basic Features and Configuration

📄 Read: references/basic-features.md

When to read: Configuring placeholder, clear button, events, borders, or text alignment

Topics covered:

  • Setting placeholder text with Placeholder property
  • Clear button visibility (ShowClearButton) and color (ClearButtonColor)
  • Custom clear button paths with ClearButtonPath
  • Value change notifications with ValueChanged event
  • Value change modes (OnLostFocus, OnKeyFocus)
  • Completed event (return key pressed)
  • ClearButtonClicked event
  • Border customization (Stroke, ShowBorder)
  • Text alignment (HorizontalTextAlignment, VerticalTextAlignment)
  • Select all text on focus with SelectAllOnFocus
  • Keyboard return type configuration with ReturnType
  • Return commands (ReturnCommand, ReturnCommandParameter)
  • AutomationId for UI testing and accessibility

Value Formatting

📄 Read: references/formatting.md

When to read: Need to format values as currency, percentage, or custom numeric formats

Topics covered:

  • Currency format (C2): $1,234.56
  • Percentage format (P2): 45.50%
  • Decimal format (N2): 1,234.56
  • Custom format strings with 0 and # specifiers
  • Integer digit formatting with zero placeholder
  • Fractional digit formatting
  • Custom format combinations (e.g., "$00.00##")
  • Culture-based formatting with Culture property
  • Percentage display modes (Value vs Compute)
  • Maximum decimal digits with MaximumNumberDecimalDigits

Value Restrictions

📄 Read: references/restrictions.md

When to read: Need to enforce minimum/maximum values or prevent null values

Topics covered:

  • Restrict null values with AllowNull property
  • Behavior when AllowNull is false (returns 0 or Minimum)
  • Restrict value within range using Minimum and Maximum
  • Default values (double.MinValue, double.MaxValue)
  • Prevent text editing with IsEditable property
  • Value changes still allowed via buttons, keys, and scroll
  • Range validation and edge cases

UpDown Buttons

📄 Read: references/updown-buttons.md

When to read: Implementing increment/decrement buttons or keyboard/mouse value changes

Topics covered:

  • Increase/decrease with keyboard arrows and Page keys
  • SmallChange (arrow keys, mouse scroll, up/down buttons)
  • LargeChange (Page Up/Down keys)
  • UpDown button placement modes:

- Hidden (default, no buttons shown) - Inline (horizontal buttons) - InlineVertical (vertical stacked buttons)

  • Button alignment (Left, Right, Both)
  • Button order (UpThenDown, DownThenUp)
  • Button color customization (UpDownButtonColor)
  • Custom button templates (UpButtonTemplate, DownButtonTemplate)
  • Auto-reverse behavior (restart at min/max with AutoReverse)

Liquid Glass Effect

📄 Read: references/liquid-glass-effect.md

When to read: Implementing modern translucent glass design (.NET 10, iOS 26+, macOS 26+)

Topics covered:

  • Liquid Glass Effect overview
  • Wrap Numeric Entry in SfGlassEffectView
  • Set Background to Transparent for glass effect
  • Configure EffectType and EnableShadowEffect
  • Platform requirements and limitations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.97%
按下载量换算93

Claude

30.98%
按下载量换算88

Cursor

19.53%
按下载量换算55

Gemini CLI

8.9%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills