<Window x:Class="WpfApp2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp2"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800" Name="window">
<Grid>
<StackPanel>
<!--依赖对象绑定-->
<TextBox Name="txt" Text="123"></TextBox>
<TextBlock Text="{Binding ElementName= txt,Path=Text}"></TextBlock>
<TextBlock Text="{Binding ElementName= window,Path=Title}"></TextBlock>
<TextBlock Text="Solider当前值:"></TextBlock>
<TextBlock Text="{Binding ElementName=slider,Path= Value}"></TextBlock>
<Slider Width="200" Name="slider" Minimum="5" Maximum="100" HorizontalAlignment="Left"></Slider>
<TextBlock Text="Solider最小值:"></TextBlock>
<TextBlock Text="{Binding ElementName=slider,Path=Minimum}"></TextBlock>
</StackPanel>
</Grid>
</Window>