首页 > 其他 > 详细

绑定资源

时间:2019-08-15 00:32:04      阅读:141      评论:0      收藏:0      [点我收藏+]

1.将元素绑定到一起

  忘记做笔记

2.绑定到非元素对象

    <Window.Resources>
        <FontFamily x:Key="CustomFont">Calibri</FontFamily>
    </Window.Resources>
    <Grid>
        <StackPanel Name="StackPanel1">
            <!--获取窗体字体样式-->
            <TextBlock Height="auto" Text="{Binding Source={x:Static SystemFonts.IconFontFamily},Path=Source}"></TextBlock>
            <!--获取自定义资源-->
            <TextBlock Height="auto" Text="{Binding Source={StaticResource CustomFont},Path=Source}"></TextBlock>
            <!--获取指定父级元素的属性-->
            <TextBlock Height="auto" Text="{Binding Path=Name,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type StackPanel},AncestorLevel=1}}"></TextBlock>
        </StackPanel>
    </Grid>

 

绑定资源

原文:https://www.cnblogs.com/wskxy/p/11355458.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!