syncfusion-wpf-range-slider — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-range-slider (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The Syncfusion WPF Range Slider (SfRangeSlider) is a versatile control that allows users to select a value or range of values within a defined minimum and maximum limit. It supports dual thumb selection, tick marks, labels, tooltips, customization, touch/gesture support, and various orientation options.
Use this skill when users need to:
The SfRangeSlider provides:
📄 Read: references/getting-started.md
📄 Read: references/range-selection.md
📄 Read: references/ticks-and-snapping.md
📄 Read: references/labels.md
📄 Read: references/tooltips.md
📄 Read: references/intermediate-values.md
📄 Read: references/customization.md
📄 Read: references/orientation-and-direction.md
📄 Read: references/gestures-and-interaction.md
📄 Read: references/events.md
<Window x:Class="RangeSliderDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:editors="clr-namespace:Syncfusion.Windows.Controls.Input;assembly=Syncfusion.SfInput.Wpf">
<Grid>
<!-- Basic Range Slider -->
<editors:SfRangeSlider
Width="400"
Minimum="0"
Maximum="100"
RangeStart="20"
RangeEnd="80"
ShowRange="True"
TickPlacement="BottomRight"
TickFrequency="10"
ShowValueLabels="True" />
</Grid>
</Window>using Syncfusion.Windows.Controls.Input;
using System.Windows;
namespace RangeSliderDemo
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
// Create range slider programmatically
SfRangeSlider rangeSlider = new SfRangeSlider()
{
Width = 400,
Minimum = 0,
Maximum = 100,
RangeStart = 20,
RangeEnd = 80,
ShowRange = true,
TickPlacement = TickPlacement.BottomRight,
TickFrequency = 10,
ShowValueLabels = true
};
// Add to container
this.Content = rangeSlider;
}
}
}<!-- Price range selector with currency formatting -->
<editors:SfRangeSlider
Width="350"
Minimum="0"
Maximum="1000"
RangeStart="100"
RangeEnd="500"
ShowRange="True"
TickFrequency="100"
TickPlacement="BottomRight"
ShowValueLabels="True"
ToolTipFormat="C0"
ThumbToolTipPlacement="TopLeft"
SnapsTo="Ticks"
RangeChanged="PriceRangeSlider_RangeChanged" /><!-- Volume slider with minor ticks and snapping -->
<editors:SfRangeSlider
Width="300"
Minimum="0"
Maximum="100"
Value="50"
TickFrequency="10"
MinorTickFrequency="2"
TickPlacement="BottomRight"
SnapsTo="StepFrequency"
StepFrequency="5"
ShowValueLabels="True"
ThumbToolTipPlacement="TopLeft"
ToolTipFormat="N0" /><!-- Custom labels for date ranges -->
<editors:SfRangeSlider
Width="450"
Minimum="0"
Maximum="11"
RangeStart="2"
RangeEnd="8"
ShowRange="True"
ShowCustomLabels="True"
TickFrequency="1"
TickPlacement="BottomRight"
SnapsTo="Ticks">
<editors:SfRangeSlider.CustomLabels>
<editors:LabelItem Content="Jan" Position="0"/>
<editors:LabelItem Content="Feb" Position="1"/>
<editors:LabelItem Content="Mar" Position="2"/>
<editors:LabelItem Content="Apr" Position="3"/>
<editors:LabelItem Content="May" Position="4"/>
<editors:LabelItem Content="Jun" Position="5"/>
<editors:LabelItem Content="Jul" Position="6"/>
<editors:LabelItem Content="Aug" Position="7"/>
<editors:LabelItem Content="Sep" Position="8"/>
<editors:LabelItem Content="Oct" Position="9"/>
<editors:LabelItem Content="Nov" Position="10"/>
<editors:LabelItem Content="Dec" Position="11"/>
</editors:SfRangeSlider.CustomLabels>
</editors:SfRangeSlider><!-- Vertical orientation with reversed direction -->
<editors:SfRangeSlider
Height="300"
Minimum="-10"
Maximum="50"
Value="22"
Orientation="Vertical"
TickFrequency="10"
TickPlacement="TopLeft"
ShowValueLabels="True"
ThumbToolTipPlacement="TopLeft"
ToolTipFormat="N0"
IsDirectionReversed="False" /><Window.Resources>
<!-- Custom thumb style -->
<Style x:Key="CustomThumbStyle" TargetType="Thumb">
<Setter Property="Width" Value="20"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Thumb">
<Ellipse Fill="#FF4CAF50"
Stroke="#FF2E7D32"
StrokeThickness="2"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<editors:SfRangeSlider
Width="400"
Minimum="0"
Maximum="100"
RangeStart="30"
RangeEnd="70"
ShowRange="True"
ThumbStyle="{StaticResource CustomThumbStyle}"
ActiveTickStroke="#FF4CAF50"
TickStroke="#FFBDBDBD"
TickPlacement="BottomRight"
TickFrequency="10" />Minimum - Minimum value of the slider (default: 0)Maximum - Maximum value of the slider (default: 100)RangeStart - Start value of the selected rangeRangeEnd - End value of the selected rangeShowRange - Enable dual thumb mode for range selectionAllowRangeDrag - Allow dragging the entire selected rangeThumbInterval - Minimum spacing between thumbsTickFrequency - Interval between major ticksMinorTickFrequency - Interval between minor ticksTickPlacement - Position of ticks (TopLeft, BottomRight, None)SnapsTo - Snap behavior (Ticks, StepFrequency, None)StepFrequency - Increment value for snappingShowValueLabels - Display numeric value labelsShowCustomLabels - Display custom labelsCustomLabels - Collection of custom label itemsLabelPlacement - Position of labelsLabelOrientation - Orientation of label textValuePlacement - Position of value displayThumbToolTipPlacement - Tooltip position (TopLeft, BottomRight, None)ThumbToolTipPrecision - Decimal places in tooltipToolTipFormat - Format string for tooltip valuesToolTipDisplayMode - When to show tooltip (Always, OnFocus)ToolTipStyle - Custom style for tooltipsOrientation - Horizontal or VerticalIsDirectionReversed - Reverse the direction of valuesMoveToPoint - Move thumb to clicked/tapped positionThumbStyle - Custom style for thumb controlsActiveTrackStyle - Style for active track regionInactiveTrackStyle - Style for inactive track regionActiveTickStroke - Color for active ticksTickStroke - Color for ticksTriggered when RangeStart or RangeEnd values change. Provides old and new values for both start and end.
Triggered when RangeStart value changes. Provides old and new start values.
Triggered when RangeEnd value changes. Provides old and new end values.
Triggered when slider labels are created. Allows dynamic label content customization.
# Install via NuGet Package Manager
Install-Package Syncfusion.SfInput.WPF
# Or via .NET CLI
dotnet add package Syncfusion.SfInput.WPFAdd XML namespace in XAML:
xmlns:editors="clr-namespace:Syncfusion.Windows.Controls.Input;assembly=Syncfusion.SfInput.Wpf"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.