Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Overview
- Installation & Deployement
- Skin & Theme
- Common Taskes and Services
- EO.Wpf Buttons
- EO.Wpf Calendar & DatePicker
- EO.Wpf ComboBox
- EO.Wpf DockView
- EO.Wpf Gauge
- EO.Wpf ListBox
- EO.Wpf Menu
- EO.Wpf MaskedEdit
- EO.Wpf ProgressBar
- EO.Wpf Slider
- EO.Wpf SpinEdit
- EO.Wpf SplitView
- EO.Wpf TabControl
- EO.Wpf TreeView
- EO.Wpf Utility Controls
- EO.Wpf WindowChrome
- Sample Data Objects
- Common Topics
- Reference
Using Ranges |
EO.Wpf Slider can display a list of background ranges. The following XAML demonstrates this feature:
XAML
<Window x:Class="Test.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:eo="http://schemas.essentialobjects.com/wpf/" xmlns:g="clr-namespace:System.Globalization;assembly=mscorlib" Title="MainWindow" Height="250" Width="350"> <StackPanel Margin="10"> <eo:Slider Minimum="0" Maximum="100" TickPlacement="Both" TickFrequency="10"> <eo:Slider.Ranges> <eo:Range StartValue="0" EndValue="40" Fill="Green"></eo:Range> <eo:Range StartValue="40" EndValue="70" Fill="Yellow"></eo:Range> <eo:Range StartValue="70" EndValue="100" Fill="Red"></eo:Range> </eo:Slider.Ranges> </eo:Slider> </StackPanel> </Window>
The above code produces the following result: