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

syncfusion-winui-sliderSynfusion WinUI 滑块

Agent Skill

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

总安装

574

周安装

23

GitHub Stars

公开资料未说明

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

Synfusion WinUI 滑块控件,支持单值拖动选择与连续输入。

  • 适用于参数调节与范围选择等前端交互场景。syncfusion-winui-slider 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 仓库安装,采用标准技能管理机制。
  • 安装前应评估其对触摸与键盘操作的兼容性。
  • 建议查阅原始文档了解刻度标记与步长设置方法。

SKILL.md

Implementing Syncfusion WinUI Slider

When to Use This Skill

Use the Syncfusion WinUI Slider when you need to:

  • Allow users to select a single numeric value from a range
  • Provide an interactive way to adjust values (volume, brightness, price range, etc.)
  • Display value selection with visual feedback (labels, ticks, tooltips)
  • Create slider controls with customizable appearance and behavior
  • Implement range selectors for filtering or configuration
  • Build settings panels with adjustable numeric parameters
  • Add interactive controls for measurements, ratings, or scores

Component Overview

The Syncfusion WinUI Slider (SfSlider) is a highly interactive UI control that enables users to select a single value from a range of values. It provides rich features including:

  • Numeric Value Support - Select values in any numeric range
  • Labels - Display formatted values with customizable styles
  • Ticks - Show major and minor tick marks at intervals
  • Dividers - Visual separators between intervals
  • Thumb Customization - Various built-in icons and custom styles
  • Tooltips - Show selected value with custom formatting
  • Track Styling - Customize active and inactive track appearance
  • Orientation - Horizontal or vertical layout
  • Accessibility - Full keyboard and screen reader support

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Creating a WinUI 3 desktop application
  • Installing the Syncfusion.Sliders.WinUI NuGet package
  • Adding namespace imports
  • Basic slider initialization
  • Setting minimum, maximum, and current values
  • Enabling ticks, labels, and dividers
  • Quick implementation examples

Core Features and Configuration

📄 Read: references/basic-features.md

  • Numeric value support and ranges
  • Orientation (Horizontal/Vertical)
  • Value property and data binding
  • Interval and step frequency
  • IsEnabled and IsInversed properties
  • ValueChanged event handling
  • Custom range implementation
  • Edge cases and validation

Labels

📄 Read: references/labels.md

  • ShowLabels property
  • Label placement and positioning
  • Label format strings (numeric, percentage, currency, custom)
  • LabelStyle customization
  • LabelOffset configuration
  • Custom label templates
  • Label visibility and spacing
  • RTL support for labels

Ticks

📄 Read: references/ticks.md

  • ShowTicks property for major ticks
  • Minor ticks with MinorTicksPerInterval
  • Tick placement and offset
  • MajorTickStyle customization
  • MinorTickStyle customization
  • TickPlacement (After, Before)
  • Custom tick templates
  • Tick frequency and spacing

Dividers

📄 Read: references/dividers.md

  • ShowDividers property
  • DividerHeight and DividerWidth
  • Divider styling and colors
  • Custom divider templates
  • Divider placement relative to track
  • Visual separation between intervals

Thumb and Tooltip

📄 Read: references/thumb-tooltip.md

  • Thumb icon and customization
  • ThumbStyle property
  • Thumb overlay effects
  • ShowToolTip property
  • Tooltip placement (Top/Bottom)
  • TooltipFormat for custom display
  • Custom tooltip templates
  • Hover and interaction states
  • Thumb accessibility features

Track Customization

📄 Read: references/track-customization.md

  • ActiveTrackHeight and InactiveTrackHeight
  • ActiveTrackStyle and InactiveTrackStyle
  • Track colors and brushes
  • Track fill customization
  • Gradient tracks
  • Custom track templates
  • Corner radius and styling
  • Track interaction states

Quick Start Example

Basic Slider Implementation

<!-- Add namespace -->
<Window xmlns:slider="using:Syncfusion.UI.Xaml.Sliders">

    <Grid>
        <slider:SfSlider Value="50"
                         Minimum="0"
                         Maximum="100"
                         Width="400"
                         Margin="20" />
    </Grid>
</Window>

Slider with Labels and Ticks

<slider:SfSlider Value="50"
                 Minimum="0"
                 Maximum="100"
                 Interval="10"
                 ShowLabels="True"
                 ShowTicks="True"
                 Width="400" />

Fully Featured Slider

<slider:SfSlider Value="50"
                 Minimum="0"
                 Maximum="100"
                 Interval="10"
                 ShowLabels="True"
                 ShowTicks="True"
                 ShowDividers="True"
                 ShowToolTip="True"
                 MinorTicksPerInterval ="1"
                 Width="400"
                 Height="60" />

Code-Behind Implementation

using Syncfusion.UI.Xaml.Sliders;

// Create slider
SfSlider slider = new SfSlider();
slider.Value = 50;
slider.Minimum = 0;
slider.Maximum = 100;
slider.Interval = 10;
slider.ShowLabels = true;
slider.ShowTicks = true;
slider.Width = 400;

// Handle value changes
slider.ValueChanged += (sender, e) =>
{
    double newValue = e.NewValue;
    Console.WriteLine($"Value changed to: {newValue}");
};

// Add to layout
rootGrid.Children.Add(slider);

Common Patterns

Volume Control Pattern

<slider:SfSlider Value="{Binding Volume, Mode=TwoWay}"
                 Minimum="0"
                 Maximum="100"
                 Interval="10"
                 ShowLabels="True"
                 ShowTicks="True"
                 ShowToolTip="True"
                 Width="300">
</slider:SfSlider>

Price Range Filter Pattern

<slider:SfSlider Value="{Binding MaxPrice, Mode=TwoWay}"
                 Minimum="0"
                 Maximum="1000"
                 Interval="100"
                 ShowLabels="True"
                 ShowTicks="True"
                 Width="400">
</slider:SfSlider>

Vertical Slider Pattern

<slider:SfSlider Value="50"
                 Minimum="0"
                 Maximum="100"
                 Orientation="Vertical"
                 ShowLabels="True"
                 ShowTicks="True"
                 Height="300"
                 Width="80" />

Disabled State Pattern

<slider:SfSlider Value="50"
                 IsEnabled="False"
                 ShowLabels="True"
                 ShowTicks="True"
                 Width="400" />

Key Properties

PropertyTypeDescription
ValuedoubleCurrent value of the slider
MinimumdoubleMinimum value (default: 0)
MaximumdoubleMaximum value (default: 100)
IntervaldoubleSpacing between labels and ticks (default: calculated)
ShowLabelsboolDisplay value labels (default: false)
ShowTicksboolDisplay tick marks (default: false)
ShowDividersboolDisplay dividers between intervals (default: false)
ShowToolTipboolDisplay tooltip on thumb hover/drag (default: false)
OrientationOrientationHorizontal or Vertical (default: Horizontal)
IsInversedboolReverse the direction (default: false)
MinorTicksPerIntervalintNumber of minor ticks per interval (default: 0)
ActiveTrackHeightdoubleHeight of the filled track
InactiveTrackHeightdoubleHeight of the unfilled track
DividerHeightdoubleHeight of divider markers
DividerWidthdoubleWidth of divider markers

Key Events

EventDescription
ValueChangedFired when the slider value changes

Common Use Cases

  1. Audio/Video Controls - Volume, playback position, brightness
  2. Filter Sliders - Price range, age range, rating filters
  3. Settings Panels - Adjustable parameters, configuration values
  4. Image Editing - Brightness, contrast, saturation adjustments
  5. Measurement Tools - Temperature, pressure, scale selectors
  6. Rating Systems - Score selection, satisfaction ratings
  7. Progress Indicators - Interactive progress bars
  8. Zoom Controls - Scale/zoom level adjustment

Best Practices

  1. Set Appropriate Ranges: Define meaningful Minimum and Maximum values
  2. Use Intervals Wisely: Choose intervals that make sense for your data
  3. Enable Visual Feedback: Show labels, ticks, or tooltips for better UX
  4. Data Binding: Use two-way binding for reactive updates
  5. Accessibility: Ensure keyboard navigation works (Tab, Arrow keys)
  6. Custom Formatting: Use LabelFormat and TooltipFormat for clarity
  7. Responsive Width: Set appropriate Width for your layout
  8. Validation: Handle ValueChanged to validate and constrain values

Troubleshooting

Slider Not Showing:

  • Verify Syncfusion.Sliders.WinUI NuGet is installed
  • Check namespace import: xmlns:slider="using:Syncfusion.UI.Xaml.Sliders"
  • Ensure Width or Height is set appropriately

Value Not Updating:

  • Use Mode=TwoWay for data binding
  • Handle ValueChanged event properly
  • Check if IsEnabled is true

Labels/Ticks Not Visible:

  • Set ShowLabels="True" and ShowTicks="True"
  • Define Interval property
  • Ensure sufficient Width/Height for layout

Tooltip Not Appearing:

  • Set ShowToolTip="True"
  • Verify mouse/touch interaction works

Next Steps

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.96%
按下载量换算71

Claude

28.47%
按下载量换算53

Cursor

18.79%
按下载量换算35

Gemini CLI

10.01%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills