wpf 将合并的字典添加到合并的字典

ws51t4hk  于 2023-05-08  发布在  其他
关注(0)|答案(3)|浏览(216)

我似乎无法将合并字典添加到XAML中的合并字典集合中。

主题.xaml

<ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="/Mine;component/Themes/Palette.Blue.xaml"/>
    <ResourceDictionary Source="/Mine;component/Themes/Template.xaml"/>
</ResourceDictionary.MergedDictionaries>

应用资源

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Mine;component/Themes/Theme.xaml"/> 
            <!--
            <ResourceDictionary Source=="/Mine;component/Themes/Palette.Blue.xaml"/>
            <ResourceDictionary Source="/Mine;component/Themes/Template.xaml"/>
            -->
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

注意:如果我把两个ResourceDictionaries都放在Appication.ResourcesMergedDictionary中(注解掉theme.xaml并取消注解其他两个字典),它们都能正确加载。然而,我们的资源定义的方式,这可能意味着相当多的资源将被加载,并且对于动态加载,我希望能够定义模板。

xmakbtuz

xmakbtuz1#

这是一个优化错误,请参阅this link
在XAML中创建每个对象时,如果存在默认样式(即style w/ a key of Type),应该应用该样式。可以想象,有几个性能优化可以使(隐含的)查找尽可能地轻。其中之一是我们不查看资源字典内部,除非它们被标记为“包含默认样式”。有一个bug:如果你所有的默认样式都嵌套在三层(或更深)的合并字典中,那么顶层字典不会被标记,所以搜索会跳过它。解决的办法是在根字典中为某个东西,任何东西设置一个默认样式。
所以在根字典中添加一个dummy样式可以解决这个问题。示例

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Mine;component/Themes/Theme.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <!-- Dummy Style, anything you won't use goes -->
        <Style TargetType="{x:Type Rectangle}" />
    </ResourceDictionary>
</Application.Resources>
wkftcu5l

wkftcu5l2#

您的示例代码在Palette.Blue.xaml的App.xaml合并资源字典源中有一个双等号。我假设这是一个错字为您的例子张贴在这里,而不是你的真实的问题,虽然。
弄清楚如何在XAML中直接链接所有资源可能是一件棘手的事情。最简单的方法是从Blend中的“资源”面板执行此操作。我创建了一个Silverlight应用程序,其中的资源文件与您的示例类似,然后在Blend中打开项目,并很快将它们链接在一起。

App.xaml

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="SilverlightApplication1.App">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Theme.xaml" />
                <!--
                <ResourceDictionary Source="Palette.Blue.xaml"/>
                <ResourceDictionary Source="Template.xaml"/>
                -->
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

主题.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="Palette.Blue.xaml"/>
        <ResourceDictionary Source="Template.xaml"/>
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

模板.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style TargetType="TextBox">
        <Setter Property="Margin" Value="10" />
        <Setter Property="Width" Value="250" />
    </Style>
    <Style x:Key="ReadOnlyTextBoxStyle" TargetType="TextBox">
        <Setter Property="IsReadOnly" Value="True" />
        <Setter Property="Foreground" Value="Black" />
        <Setter Property="IsTabStop" Value="False" />
        <Setter Property="Margin" Value="10" />
        <Setter Property="Width" Value="250" />
    </Style>
</ResourceDictionary>

调色板.蓝色.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <SolidColorBrush x:Key="BlueSolidColorBrush" Color="SkyBlue" />
</ResourceDictionary>

MainPage.xaml

<UserControl x:Class="SilverlightApplication1.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <StackPanel x:Name="LayoutRoot" Background="Honeydew">
        <TextBox Text="Read Only Textbox"
                 Style="{StaticResource ReadOnlyTextBoxStyle}" />
        <TextBox Text="Blue Textbox"
                 Background="{StaticResource BlueSolidColorBrush}" />
        <TextBox Text="Read Only, Blue Textbox"
                 Style="{StaticResource ReadOnlyTextBoxStyle}"
                 Background="{StaticResource BlueSolidColorBrush}" />
    </StackPanel>
</UserControl>

当然,如果您链接来自不同程序集的资源,它看起来会有所不同。实际上,在这种情况下,我建议在后面的代码中合并你的字典。

6kkfgxo0

6kkfgxo03#

如果这发生在你自己的控件上,我发现另一种解决方案是将DefaultStyleKey属性设置为null:

DefaultStyleKeyProperty.OverrideMetadata(typeof(MyControl), new FrameworkPropertyMetadata(null));

我不知道为什么这样做,但它似乎!

相关问题