Represents a slider control that can be used to specify individual values or value ranges.
Namespace: MindFusion.UI.Wpf
Assembly: MindFusion.UI.Wpf
SyntaxC#
Copy Code
|
|---|
public class Slider : Control |
Visual Basic
Copy Code
|
|---|
Public Class Slider |
ExampleThe following example demonstrates how to declare Slider control in XAML:
XAML
Copy Code
|
|---|
<ui:Slider IsSelectionRangeEnabled="True" SelectionStart="20" SelectionEnd="30" Width="400" Height="78" VerticalAlignment="Top" HorizontalAlignment="Left" /> |
The code above will produce results similar to the following picture:

Inheritance HierarchySystem.Object![]()
System.Windows.Threading.DispatcherObject![]()
System.Windows.DependencyObject![]()
System.Windows.Media.Visual![]()
System.Windows.UIElement![]()
System.Windows.FrameworkElement![]()
System.Windows.Controls.Control![]()
MindFusion.UI.Wpf.Slider
See Also