Set Minimun/Maximum value for Slider : Slider « Windows Presentation Foundation « C# / C Sharp






Set Minimun/Maximum value for Slider

Set Minimun/Maximum value for Slider
     

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="120" Width="300">

    <StackPanel>
        <ProgressBar  Width="200" Height="100" x:Name="progress" Value="30" HorizontalAlignment="Center" Margin="10"/>
        <Slider Value="{Binding ElementName=progress, Path=Value, Mode=TwoWay}" Minimum="0" Maximum="100"  Margin="10"/>
    </StackPanel>

</Window>

   
    
    
    
    
  








Related examples in the same category

1.Use Slider to control the ScaleTransformUse Slider to control the ScaleTransform
2.Use Slider to control SkewTransformUse Slider to control SkewTransform
3.Use Slider to control TranslateTransformUse Slider to control TranslateTransform
4.Use Slider to control the TransformationUse Slider to control the Transformation
5.Bind Slider value to TextBlockBind Slider value to TextBlock
6.Use Slider to control the BlurUse Slider to control the Blur
7.Use Slider to control Drop ShadowUse Slider to control Drop Shadow
8.Use Slider to control the EmbossUse Slider to control the Emboss
9.Use Slider to control the GlowUse Slider to control the Glow
10.Use Slider to control the BevelUse Slider to control the Bevel
11.Vertical/Horizontal SliderVertical/Horizontal Slider
12.TickPlacement and TickFrequency for Slider
13.Binding ProgressBar with SliderBinding ProgressBar with Slider
14.Two way data binding between Slider and ProgressBarTwo way data binding between Slider and ProgressBar
15.Use Slider to control Path ScalingUse Slider to control Path Scaling
16.Add a slider control and a border control to the content of the StackPanel, and add a canvas to the border control.Add a slider control and a border control to the content of the StackPanel, and add a canvas to the border control.
17.Slider AttributesSlider Attributes
18.Get User Input from a SliderGet User Input from a Slider
19.slider value changed eventslider value changed event