WPF 各种绑定写法以及用法

一:{Binding ElementName=grid0, Path=Height}

ElementName=grid0:查找到名为grid0的控件。

, Path=Height:获取名为grid0的控件的Height属性值。

即:Lb1的属性值设置为grid0控件的Height属性设置值。

    <Grid Name="grid0">
        <Grid>
            <StackPanel Background="AliceBlue">
                <Border HorizontalAlignment="Left" Height="30" Cursor="Hand" Panel.ZIndex="2">
                    <Label Content="返回" HorizontalAlignment="Left" MouseLeftButtonUp="Label_MouseLeftButtonUp"></Label>
                </Border>
                <Border VerticalAlignment="Top" Margin="0,-30,0,0">
                    <Label name="Lb1" Content="123" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="{Binding ElementName=grid0, Path=Height}" FontSize="28" FontFamily="微软雅黑"></Label>
                </Border>
            </StackPanel>
        </Grid>
    </Grid>

 二: {StaticResource LabelPanelStyle}

x:key属性值等于LabelPanelStyle的且类型为Lable的样式,加载到当前样式(Lable)中

<UserControl.Resources>
  <Style x:Key="LabelPanelStyle" TargetType="{x:Type Label}">
      <Setter Property="Foreground" Value="White"/>
  </Style>
</UserControl.Resources>
<Grid>
    <Label x:Name="borderControl"  FontFamily="微软雅黑" FontSize="20"  Background="#FF62A0CA" Content="123"  Style="{StaticResource LabelPanelStyle}"></Label>
</Grid>

 三:StaticResource 与 DynamicResource的区别

 来自:https://www.cnblogs.com/tianma3798/p/5927335.html

 

转载于:https://www.cnblogs.com/SeNaiTes/p/9561301.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值