<TextBox Width="80" Text="{Binding Value,ElementName=Slider1}">
</TextBox>
<TextBox Width="80" >
<Binding ElementName="Slider1" Path="Value"></Binding>
</TextBox>
<Slider Name="Slider1" Maximum="100"></Slider>
<TextBox Width="50" Text="{Binding Value, ElementName=Slider1, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"></TextBox>