wpf之RelativeSource用法总结

前言

RelativeSource用于在绑定时相对于当前元素来定位绑定源,而不是使用 ElementName 或 DataContext,它主要有两种相对于当前元素来确定绑定源的方式,一种是将自己作为绑定源;另一种是指定绑定的控件类型,系统自动寻找自身的父控件,父控件的父控件,以此类推一层层往上寻找。

1、self

下面的代码中Button的Width属性采用绑定的方式,并且指定Path为Height属性,然后使用RelativeSource={RelativeSource self}来指定绑定的源就是自己,所以你能看到最后Button的宽度和高度是一样大。

csharp 复制代码
<Window x:Class="wpf之RelativeSource.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:wpf之RelativeSource"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">

    <Grid Background="Blue"  >
        <Grid.RowDefinitions >
            <RowDefinition  Height="300"/>
            <RowDefinition  Height=" 1*"/>
        </Grid.RowDefinitions >
        <Grid Grid.Row="0" Background="Red" >
            <StackPanel Orientation="Vertical" >
                <Button  Height=" 100" Content=" 1"  Width="{Binding Path=Height, RelativeSource={RelativeSource self}}"/>
            </StackPanel >
        </Grid>
    </Grid >
</Window>

2、AncestorType

下面的代码中Button的Foreground 字体颜色属性采用绑定的方式,并且指定Path为Background 属性,然后第一个Button使用RelativeSource={RelativeSource AncestorType=Grid }来指定绑定的源的类型是Grid,这样系统就能自动寻找Button的父控件中第一个Grid的Background,最后也是为红色;第二个Button使用RelativeSource={RelativeSource AncestorType=Grid, AncestorLevel=2 }来指定绑定的源的类型是Grid,并且通过AncestorLevel=2来指定找到的第2个Grid才是最终要找的Grid,最后找到的Grid也就是最外层的Grid背景也就是蓝色,所以第2个Button的字体颜色就是蓝色。

csharp 复制代码
<Window x:Class="wpf之RelativeSource.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:wpf之RelativeSource"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">

    <Grid Background="Blue"  >
        <Grid.RowDefinitions >
            <RowDefinition  Height="300"/>
            <RowDefinition  Height=" 1*"/>
        </Grid.RowDefinitions >
        <Grid Grid.Row="0" Background="Red" >
            <StackPanel Orientation="Vertical" >
                               <Button  Height="20"  Content=" 2"  Foreground ="{Binding Path=Background , RelativeSource={RelativeSource AncestorType=Grid }}"/>
                <Button  Height=" 20"  Content=" 2"  Foreground ="{Binding Path=Background , RelativeSource={RelativeSource AncestorType=Grid, AncestorLevel=2 }}"/>
            </StackPanel >
        </Grid>
    </Grid >
</Window>

马工撰写的年入30万+C#上位机项目实战必备教程(点击下方链接即可访问文章目录)

1、《C#串口通信从入门到精通》

2、《C#与PLC通信从入门到精通 》

3、《C# Modbus通信从入门到精通》

4、《C#Socket通信从入门到精通 》

5、《C# MES通信从入门到精通》

6、《winform控件从入门到精通》

7、《C#操作MySql数据库从入门到精通》

相关推荐
Dm_dotnet3 小时前
WPF应用最小化到系统托盘
c#
*长铗归来*5 小时前
ASP.NET Core Web API 中控制器操作的返回类型及Swagger
后端·c#·asp.net·.netcore
R-G-B8 小时前
【06】C#入门到精通——C# 多个 .cs文件项目 同一项目下添加多个 .cs文件
开发语言·c#·c# 多个 .cs文件项目
懒人Ethan1 天前
解决一个C# 在Framework 4.5反序列化的问题
java·前端·c#
mysolisoft1 天前
Avalonia+ReactiveUI实现记录自动更新
c#·avalonia·reactiveui·sourcegenerator
心疼你的一切1 天前
使用Unity引擎开发Rokid主机应用的模型交互操作
游戏·ui·unity·c#·游戏引擎·交互
韩立学长1 天前
【开题答辩实录分享】以《C#大型超市商品上架调配管理系统的设计与实现》为例进行答辩实录分享
开发语言·c#
玩泥巴的1 天前
.NET驾驭Word之力:数据驱动文档 - 邮件合并与自定义数据填充完全指南
c#·word·.net·com互操作
心疼你的一切1 天前
使用Unity引擎开发Rokid主机应用的全面配置交互操作
学习·游戏·unity·c#·游戏引擎·交互