首页 > Windows开发 > 详细

wpf样式的问题

时间:2019-08-22 23:41:23      阅读:117      评论:0      收藏:0      [点我收藏+]

WPF样式的加载是需要将样式文件定义为 ResourceDictionary

现在我们在某个样式DLL中定义style样式,如定义一个Button的样式文件 ControlStyle.xmal:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style x:Key="HSQCThemesButton" TargetType="{x:Type Button}">
        <Setter Property="BorderBrush" Value="Blue" />
        <Setter Property="Padding" Value="15,5,15,10" />
        <Setter Property="Height" Value="100" />
        <Setter Property="Width" Value="100" />
        <Setter Property="Content" Value="按钮样式" />
    </Style>
</ResourceDictionary>

在另一个组件中引用该DLL,如果需要使用该Button Style,可以有如下操作:

技术分享图片

1、在A.xmal中添加样式资源

  <DataTemplate.Resources>
            <ResourceDictionary>
                <ResourceDictionary.MergedDictionaries>
                    <ResourceDictionary Source="/HSQC.Common.Themes;component/Generic.xaml" />
                </ResourceDictionary.MergedDictionaries>
            </ResourceDictionary>
        </DataTemplate.Resources>

2、在A.cs中初始化的时候,加载样式资源

      Application.Current.Resources.MergedDictionaries.Add(Application.LoadComponent(new Uri("/HSQC.Common.Themes;component/Generic.xaml", UriKind.Relative)) as ResourceDictionary);

疑问点:

本以为button style的Key是唯一的,引用的时候是全局引用,发现并不是,这个有待思考,按理是可以通过key唯一找到样式的

 

wpf样式的问题

原文:https://www.cnblogs.com/sonkan/p/11397092.html

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