设置该属性 可以根据当前目标对象的相对关系指向源目标。比如获取当前对象的父对象、兄弟对象或者自身的其他属性等一些数据;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <StackPanel Margin="10,50,0,0" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Vertical" ToolTip="top"> <StackPanel Orientation="Horizontal"> <TextBlock Width="150" Text="获取自身宽度:" /> <TextBlock Width="200" Text="{Binding Path=Width, RelativeSource={RelativeSource Mode=Self}}" /> </StackPanel> <StackPanel Orientation="Horizontal" ToolTip="parent"> <TextBlock Width="150" Text="查找上一层ToolTip:" /> <TextBlock Text="{Binding Path=ToolTip, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type StackPanel}}}" /> </StackPanel> <StackPanel Orientation="Horizontal"> <TextBlock Width="150" Text="查找上二层ToolTip:" /> <TextBlock Text="{Binding Path=ToolTip, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type StackPanel}, AncestorLevel=2}}" /> </StackPanel> </StackPanel>
|