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

syncfusion-maui-treeview同步融合毛伊岛树视图

Agent Skill

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

总安装

857

周安装

35

GitHub Stars

54

下载量

277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • syncfusion-maui-treeview 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion.NET MAUI TreeView

The Syncfusion.NET MAUI TreeView (SfTreeView) is a powerful data-oriented control for displaying hierarchical data structures such as organizational charts, file systems, nested connections, and multi-level data. It provides intuitive expand/collapse functionality, multiple selection modes, drag-and-drop support, and extensive customization options.

When to Use This Skill

Use this skill when implementing:

  • Hierarchical Data Display: Organizational structures, file explorers, category trees, nested menus
  • Interactive Tree Navigation: Expandable/collapsible nodes, multi-level browsing
  • Data Binding Scenarios: Bound mode with ItemsSource or unbound mode with manual nodes
  • Selection Requirements: Single, multiple, or extended selection in tree structures
  • Custom Tree UI: Templated nodes, custom expanders, styled tree items
  • Advanced Tree Features: Drag-drop reordering, filtering, sorting, load on demand
  • MVVM Applications: TreeView with commands, data binding, and ViewModel patterns

Component Overview

Key Capabilities:

  • Enhanced performance with optimized view-reusing strategy
  • Bound and unbound data modes
  • Multiple selection modes with keyboard navigation
  • Item and expander templating
  • Expand/collapse with animations
  • Drag-and-drop node reordering
  • Filtering and sorting support
  • Load on demand for large datasets
  • MVVM pattern support
  • RTL (right-to-left) support
  • Customizable appearance and styling

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

When to read: Setting up TreeView for the first time, initial configuration, basic implementation

Covers:

  • Installing Syncfusion.Maui.TreeView NuGet package
  • Registering Syncfusion handler in MauiProgram.cs
  • Creating a basic TreeView control
  • First working example
  • Running and testing the application

Data Binding and Population

📄 Read: references/data-binding.md

When to read: Populating TreeView with data, choosing between bound/unbound modes, hierarchical data structures

Covers:

  • Bound vs unbound modes comparison
  • Creating nodes without data source (unbound mode with TreeViewNode)
  • Data binding with ItemsSource (bound mode)
  • Defining hierarchical data models
  • Using HierarchyPropertyDescriptors for complex hierarchies
  • ChildPropertyName configuration
  • Self-relational data structures
  • ObservableCollection integration

Selection

📄 Read: references/selection.md

When to read: Implementing node selection, handling selection events, customizing selection appearance

Covers:

  • Selection modes: Single, SingleDeselect, Multiple, Extended, None
  • SelectedItem, CurrentItem, and SelectedItems properties
  • SelectionChanging and SelectionChanged events
  • SelectionBackground and SelectionForeground customization
  • Keyboard navigation (WinUI, MacCatalyst)
  • Programmatic selection
  • Selection validation and cancellation

Node Expansion and Collapse

📄 Read: references/expand-collapse.md

When to read: Configuring expand/collapse behavior, handling expansion events, initial node states

Covers:

  • AutoExpandMode options (None, AllNodes, RootNodes, specific levels)
  • ExpandActionTarget (Expander, Node)
  • Programmatic expand/collapse methods
  • NodeExpanding and NodeCollapsing events
  • IsExpanded property for individual nodes
  • Expand/collapse animations
  • Event cancellation and validation

Templating and Customization

📄 Read: references/templating.md

When to read: Customizing node appearance, creating custom expanders, designing tree item UI

Covers:

  • ItemTemplate for node content customization
  • ExpanderTemplate for custom expand/collapse icons
  • ItemTemplateContextType (Node vs Data binding context)
  • DataTemplate creation and binding
  • Mixing images, text, and custom controls
  • Template selectors for conditional templates
  • Advanced templating patterns

Drag and Drop

📄 Read: references/drag-and-drop.md

When to read: Enabling node reordering, implementing drag-drop functionality, customizing drag behavior

Covers:

  • Enabling AllowDragging property
  • DragStarting, DragOver, and Drop events
  • Reordering nodes within the tree
  • Drag restrictions and validation
  • Visual feedback during drag operations
  • Custom drag templates
  • Handling drag between different levels

Filtering

📄 Read: references/filtering.md

When to read: Filtering tree nodes, implementing search functionality, showing/hiding nodes based on criteria

Covers:

  • FilterLevel property (Root, All, Extended)
  • Filter predicates and expressions
  • Filtering hierarchical data
  • Clearing and updating filters
  • Dynamic filtering with ObservableCollection
  • Performance considerations

Sorting

📄 Read: references/sorting.md

When to read: Sorting tree nodes, custom sort logic, multi-level sorting

Covers:

  • SortComparer configuration
  • Sorting hierarchical data at each level
  • Custom IComparer implementations
  • Ascending/descending order
  • Sorting with data binding
  • Performance optimization for large trees

Styling and Appearance

📄 Read: references/styling-appearance.md

When to read: Customizing visual appearance, adjusting spacing and indentation, applying themes

Covers:

  • Item height customization (ItemHeight property)
  • Indentation settings for nested levels
  • Liquid glass effect styling
  • RTL (right-to-left) support
  • Background and foreground colors
  • Border and padding customization
  • Theme integration

MVVM Support

📄 Read: references/mvvm-support.md

When to read: Implementing TreeView with MVVM pattern, using commands and data binding

Covers:

  • ViewModel setup for TreeView
  • INotifyPropertyChanged implementation
  • Command binding for node actions
  • Data-bound ItemsSource
  • Selection binding in MVVM
  • Event-to-command patterns
  • Best practices for MVVM architecture

Checkbox Support

📄 Read: references/checkbox-support.md

When to read: Adding checkboxes to nodes, handling checked/unchecked states, recursive checkbox modes

Covers:

  • Checkbox in bound mode with CheckedItems
  • Checkbox in unbound mode with IsChecked property
  • CheckBoxMode property (Recursive, Cascade, None)
  • Working with checked items collection
  • Programmatic checkbox state management
  • Best practices for checkbox implementation

Load on Demand

📄 Read: references/load-on-demand.md

When to read: Implementing lazy loading of child nodes, handling large datasets, API-based hierarchies

Covers:

  • Load on Demand implementation with LoadOnDemandCommand
  • ShowExpanderAnimation for loading feedback
  • PopulateChildNodes method
  • Avoiding duplicate loading
  • API-based lazy loading patterns
  • Performance optimization with lazy loading

Scrolling and Navigation

📄 Read: references/scrolling-navigation.md

When to read: Programmatic scrolling, bringing items into view, keyboard navigation

Covers:

  • BringIntoView method with all overloads
  • Scroll position options (Start, Center, End, MakeVisible)
  • Scroll animation control
  • Horizontal scrolling configuration
  • Scrollbar visibility control
  • Keyboard navigation (arrow keys, Tab)
  • Events (Loaded, ItemTapped, ItemDoubleTapped, ItemRightTapped)

Item Height Customization

📄 Read: references/item-height-customization.md

When to read: Customizing node heights, dynamic sizing, content-based measurements

Covers:

  • Static ItemHeight property
  • QueryNodeSize event for per-item heights
  • NodeSizeMode property (Dynamic vs None)
  • GetActualNodeHeight method
  • Dynamic height calculation
  • Performance considerations

Empty View

📄 Read: references/empty-view.md

When to read: Displaying empty states, customizing no-data UI, template-based empty views

Covers:

  • Display string message when empty
  • Display custom views in empty state
  • EmptyViewTemplate for templated empty views
  • Trigger conditions for empty view
  • Binding in empty view templates
  • Search/filter empty state patterns

Advanced Features

📄 Read: references/advanced-features.md

When to read: Implementing load on demand, performance optimization, advanced TreeView operations

Covers:

  • Load on demand for large datasets
  • Empty view customization (EmptyView property)
  • Scrolling configuration and optimization
  • Working with TreeViewNode programmatically
  • Checkbox support
  • Events

Troubleshooting

📄 Read: references/troubleshooting.md

When to read: Debugging issues, resolving errors, optimization problems

Covers:

  • Common TreeView issues and solutions
  • Performance troubleshooting
  • Data binding problems
  • Selection not working
  • Template rendering issues
  • Expand/collapse problems
  • Memory leaks and optimization
  • Best practices checklist

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.15%
按下载量换算97

Claude

31.79%
按下载量换算88

Cursor

18.6%
按下载量换算52

Gemini CLI

10.08%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills