Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-winui-segmented-controlSynfusion WinUI 分段控件

Agent Skill

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

总安装

558

周安装

23

GitHub Stars

公开资料未说明

下载量

182
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/winui-ui-components-skills --skill syncfusion-winui-segmented-control

简介

Synfusion WinUI 分段控件,用于多选项标签页式切换界面。

  • 适用于导航栏与分类选择等前端设计任务。syncfusion-winui-segmented-control 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 仓库安装,兼容主流 AI 编程宿主。
  • 使用前应检查是否引入额外样式表或脚本资源。
  • 建议结合源码了解选中状态管理与响应式更新机制。

SKILL.md

Implementing WinUI Segmented Control

When to Use This Skill

Use this skill when the user needs to:

  • Create a segmented control or segment picker UI
  • Implement mutually exclusive option selection
  • Build tab-like navigation without full TabControl
  • Create filter bars or view mode switchers
  • Display 2+ linear options where only one can be selected
  • Add animated selection transitions (slide effect)
  • Create custom segment styles (ellipse, circle, top indicator)
  • Implement keyboard navigation for segment selection
  • Disable specific segments conditionally
  • Support both light and dark themes

Always apply this skill when the user mentions: segmented control, segment picker, option selector, filter bar, view switcher, tab selector, mutually exclusive buttons, or segment-based navigation in WinUI applications.

Component Overview

SfSegmentedControl is a Syncfusion WinUI control that provides a simple way to choose from a linear set of two or more segments, each functioning as a mutually exclusive option. It offers a clean alternative to radio buttons or tabs with built-in slide animation, custom styling, and theme support.

Namespace: Syncfusion.UI.Xaml.Editors NuGet Package: Syncfusion.Editors.WinUI Platform: WinUI 3 Desktop (.NET 5+, Windows App SDK 1.0+)

Key Advantage: Provides a modern, iOS-style segmented picker with slide animation, shadow effects, and extensive customization—ideal for compact option selection without complex UI.

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup (Syncfusion.Editors.WinUI)
  • Namespace imports (Syncfusion.UI.Xaml.Editors)
  • Basic SfSegmentedControl initialization
  • Populating with string collections (inline x:String items)
  • Populating with business objects (ItemsSource, DisplayMemberPath)
  • ItemTemplate for custom UI (icons, images, text)
  • First complete example with ViewModel
  • License registration

Selection Features

📄 Read: references/selection.md

  • SelectedIndex property for programmatic selection
  • SelectedItem property and two-way binding
  • SelectionChanged event with NewValue and OldValue
  • Handling selection programmatically (by index, by item, cycling)

📄 Read: references/selection-styling.md

  • SelectedSegmentStyle customization
  • Shadow effects on selected items (HasShadow, ShadowColor)
  • Selection animations (Slide vs None) and SelectionAnimationType property
  • Keyboard navigation (Arrow keys, Tab, Enter)
  • Best practices for selection

Disabling Items

📄 Read: references/disable-items.md

  • SetItemEnabled method for conditional disabling
  • Disabling segments by index
  • Visual appearance of disabled items
  • Preventing user interaction with specific segments
  • Common patterns (form validation, conditional availability)

UI Customization

📄 Read: references/ui-customization.md

  • BorderThickness and ItemBorderThickness
  • CornerRadius customization for control and items
  • BorderBrush color customization
  • ItemContainerStyle for per-item styling
  • ItemTemplateSelector for conditional templates
  • ItemContainerStyleSelector for conditional styles
  • Best practices for UI styling

📄 Read: references/custom-templates.md

  • Ellipse (pill) style template
  • Circle color-swatch style template
  • Image with text stacked layout template
  • Top indicator (tab-bar) style template
  • Gradient background template

Theme Support

📄 Read: references/themes.md

  • RequestedTheme in App.xaml (Dark/Light)
  • Theme-aware customization using keys
  • 12 theme resource keys for complete control
  • SyncfusionSegmentedControl* theme keys
  • Light and Dark theme examples
  • ResourceDictionary.ThemeDictionaries structure

Quick Start Example

Basic Segmented Control with Strings

<Window xmlns:syncfusion="using:Syncfusion.UI.Xaml.Editors">
    <Grid>
        <syncfusion:SfSegmentedControl
            x:Name="segmentedControl"
            HorizontalAlignment="Center"
            VerticalAlignment="Center"
            SelectedIndex="0">
            <x:String>Day</x:String>
            <x:String>Week</x:String>
            <x:String>Month</x:String>
            <x:String>Year</x:String>
        </syncfusion:SfSegmentedControl>
    </Grid>
</Window>

With Business Objects and ViewModel

// ViewModel
public class SegmentedViewModel
{
    public ObservableCollection<PeriodModel> Periods { get; set; }

    public SegmentedViewModel()
    {
        Periods = new ObservableCollection<PeriodModel>
        {
            new PeriodModel { Name = "Day" },
            new PeriodModel { Name = "Week" },
            new PeriodModel { Name = "Month" },
            new PeriodModel { Name = "Year" }
        };
    }
}

public class PeriodModel
{
    public string Name { get; set; }
}
<syncfusion:SfSegmentedControl
    ItemsSource="{Binding Periods}"
    DisplayMemberPath="Name"
    SelectedIndex="2"/>

Common Patterns

1. View Mode Switcher

<syncfusion:SfSegmentedControl SelectedIndex="0" SelectionChanged="ViewMode_Changed">
    <x:String>List</x:String>
    <x:String>Grid</x:String>
    <x:String>Timeline</x:String>
</syncfusion:SfSegmentedControl>
private void ViewMode_Changed(object sender, SegmentSelectionChangedEventArgs e)
{
    string selectedMode = e.NewValue as string;
    UpdateViewMode(selectedMode);
}

When to use: Switching between different display modes or layouts.

2. Filter Bar with Selection

<syncfusion:SfSegmentedControl
    ItemsSource="{Binding FilterOptions}"
    DisplayMemberPath="Label"
    SelectedIndex="{Binding SelectedFilterIndex, Mode=TwoWay}"/>

When to use: Filtering data by category with visible selection state.

3. Custom Icon Segments with ItemTemplate

<syncfusion:SfSegmentedControl ItemsSource="{Binding Items}">
    <syncfusion:SfSegmentedControl.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <Path Data="{Binding Icon}" Fill="{Binding IconColor}" Width="16" Height="16"/>
                <TextBlock Text="{Binding Name}" Margin="6,0,0,0"/>
            </StackPanel>
        </DataTemplate>
    </syncfusion:SfSegmentedControl.ItemTemplate>
</syncfusion:SfSegmentedControl>

When to use: Segments with icons or images for better visual recognition.

4. Disabled Segments for Unavailable Options

segmentedControl.SetItemEnabled(2, false); // Disable "Premium" option
segmentedControl.SetItemEnabled(3, false); // Disable "Enterprise" option

When to use: Conditionally disabling options based on user permissions or app state.

5. Custom Selection Style with Shadow

<syncfusion:SfSegmentedControl SelectedIndex="1">
    <syncfusion:SfSegmentedControl.SelectedSegmentStyle>
        <Style TargetType="syncfusion:SelectedSegmentBorder">
            <Setter Property="Background" Value="#6C58EA"/>
            <Setter Property="HasShadow" Value="True"/>
            <Setter Property="ShadowColor" Value="#6C58EA"/>
            <Setter Property="CornerRadius" Value="8"/>
        </Style>
    </syncfusion:SfSegmentedControl.SelectedSegmentStyle>
</syncfusion:SfSegmentedControl>

When to use: Adding visual depth and modern appearance to selected segments.

6. No Animation for Instant Selection

<syncfusion:SfSegmentedControl
    SelectionAnimationType="None"
    SelectedIndex="0">
    <x:String>Option 1</x:String>
    <x:String>Option 2</x:String>
    <x:String>Option 3</x:String>
</syncfusion:SfSegmentedControl>

When to use: When slide animation feels too slow or distracting for rapid selections.

Key Properties

PropertyTypeDefaultDescription
ItemsSourceIEnumerablenullCollection of items to display as segments.
DisplayMemberPathstringnullProperty path to display from business objects.
ItemTemplateDataTemplatenullCustom template for rendering each segment item.
SelectedIndexint0Index of the currently selected segment (0-based).
SelectedItemobjectnullCurrently selected item from ItemsSource.
SelectionAnimationTypeSegmentSelectionAnimationTypeSlideAnimation type (Slide or None) for selection transitions.
SelectedSegmentStyleStyleDefaultStyle for the selected segment border (SelectedSegmentBorder target).
ItemContainerStyleStyleDefaultStyle for each SfSegmentedItem container.
ItemTemplateSelectorDataTemplateSelectornullSelector for conditional item templates.
ItemContainerStyleSelectorStyleSelectornullSelector for conditional item styles.
BorderThicknessThickness1Border thickness of the control.
ItemBorderThicknessThickness0,0,1,0Border thickness between segment items.
CornerRadiusCornerRadius0Corner radius of the control.
BorderBrushBrushDefaultBorder color of the control.

Key Events

EventDescription
SelectionChangedFired when selection changes. Provides NewValue and OldValue in SegmentSelectionChangedEventArgs.

Key Methods

MethodDescription
SetItemEnabled(int index, bool isEnabled)Enables or disables a segment item at the specified index.

Common Use Cases

View Switchers

  • List/Grid/Timeline view toggles
  • Calendar view modes (Day/Week/Month/Year)
  • Map view types (Standard/Satellite/Hybrid)
  • Chart types (Line/Bar/Pie)

Best Approach: Use string items or DisplayMemberPath with SelectionChanged event handler.

Filter Bars

  • Status filters (All/Active/Completed/Archived)
  • Priority filters (Low/Medium/High/Critical)
  • Category filters (Documents/Images/Videos/Audio)
  • Time period filters (Today/Week/Month/Year)

Best Approach: Bind to ObservableCollection, use SelectedIndex with two-way binding.

Settings Toggles

  • Privacy levels (Public/Friends/Private)
  • Notification preferences (All/Important/None)
  • Language selection (English/Spanish/French)
  • Theme selection (Auto/Light/Dark)

Best Approach: Use SelectionChanged to update app settings immediately.

Tab-like Navigation

  • Compact section navigation (Info/Details/Reviews)
  • Form step indicators (Personal/Address/Payment)
  • Profile tabs (Posts/About/Photos)

Best Approach: Use with custom ItemTemplate for icons, disable animation for instant switching.

Dashboard Controls

  • Date range selectors (1D/1W/1M/3M/1Y)
  • Data source toggles (Local/Cloud/All)
  • Report type selectors
  • Comparison mode toggles

Best Approach: Enable shadow effects, use custom colors matching dashboard theme.

Implementation Tips

  1. Item Count: Best for 2-7 segments. More items may require scrolling or alternative control.
  2. Selection Handling: Use SelectionChanged event for immediate reactions. Bind SelectedIndex for MVVM.
  3. Disabled Items: Use SetItemEnabled() after ItemsSource is set. Call in Loaded event if binding to ViewModel.
  4. Custom Styling: Set ItemContainerStyle for uniform spacing. Use SelectedSegmentStyle for selection appearance.
  5. Animation: Slide animation (default) provides smooth transitions. Use None for instant selection in forms.
  6. Keyboard Support: Arrow keys navigate, Enter selects. Ensure TabIndex is set for proper focus flow.
  7. Theme Support: Use theme keys in Resources for consistent Light/Dark theme appearance.
  8. ItemTemplate: Use for icons, images, or complex layouts. Keep templates simple for performance.
  9. Border Customization: Set ItemBorderThickness="0" for seamless segments. Use BorderThickness for outer border.
  10. CornerRadius: Match control and item CornerRadius for consistent rounded appearance.

Related Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.19%
按下载量换算62

Claude

32.21%
按下载量换算59

Cursor

21.06%
按下载量换算38

Gemini CLI

10.4%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills