WPF后台页面使用前端设置的样式资源

例如前端定制了一个样式:

        <!-- banner图片 -->
        <Style x:Key="bannerImgStyle" TargetType="Image">
            <Setter Property="Width" Value="{Binding Path=ActualWidth,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=local:BannerViewer}}"/>
            <Setter Property="Height" Value="{Binding Path=ActualHeight,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=local:BannerViewer}}"/>
            <Setter Property="Stretch" Value="Fill"/>
        </Style>

那么后端代码的引用方式如下:

void BtnLeft_Click(object sender, RoutedEventArgs e)
        {
            Style imgStyle = FindResource("bannerImgStyle") as Style;
        }

注意!上面的查找资源方式只能在方法和事件里使用,无法定义属性

全局资源样式如下

        static readonly Brush BrightBrush = Application.Current.FindResource("Primary") as SolidColorBrush;
        static readonly Brush DarkBrush = Application.Current.FindResource("Kerley") as SolidColorBrush;

上面两种色刷资源是全局公共资源,所以从Application.Current中可以查到

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值