I am trying to label a slider with the minimum and maximum values. For example, if minimum = 1 and maximum = 50, I would like it to look like this:
|................................................|
1 50
<Label Content="{Binding ElementName=NameOfSlider, Path=Minimum}" Height="Auto" FontWeight="Normal"/>
will put "1" on the left side.
How do I get the "50" on the right side of the same line?