5

这是场景:

我一直在使用 VS 2010 使用 MEF 编写相当大的 WPF 项目。这个解决方案中有多个项目,我有一个ResourceDictionary适合我所有风格的项目。

AppStyles.xaml ResourceDictionary位于我的启动项目中,它包含我对该项目的所有样式。在我的内部,App.xaml我有以下内容:

<Application x:Class="Dionysus.Shell.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         DispatcherUnhandledException="UnhandledException" ShutdownMode="OnMainWindowClose">
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>

            <ResourceDictionary Source="AppStyles.xaml"/>

    </ResourceDictionary>
</Application.Resources>

现在,这一切都在 VS 2010 的设计模式下完美运行,当我调试时,正确的样式被应用于我的所有控件。但是我最近切换到VS 2012,设计器不再工作了!当我调试它时,它工作得很好,但每当我使用我的一种样式时,如下所示:

<Button Name="btnForward" Height="23" Margin="10,0" Style="{StaticResource DionysusButton}" Grid.Row="2" Grid.Column="0"/>

我在 VS 2012 设计器中收到以下错误:

The resource "DionysusButton" could not be resolved.

我不知道为什么会发生这种情况,我已经重命名了 my Style,甚至ResourceDictionary无济于事。

我应该在 VS 2012 中这样做吗?或者这是 VS 2012 的问题?

我发现很多帖子都说更改x:Namemy AppStyles.xaml ResourceDictionaryto的属性x:Key可以解决这个问题,但我不能这样做,因为它不是ResourceDictionary.

提前感谢

- 更新

我正在使用 Marc 的答案,除了默认样式外,一切似乎都很顺利。我有以下风格:

 <Style TargetType="DataGrid" x:Name="DataGridStyle"/>

这是我的主要内容ResourceDictionary

<ResourceDictionary x:Name="Main" 
                xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">


<ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="Styles/AppStyling.xaml" />
</ResourceDictionary.MergedDictionaries>

<Style TargetType="DataGrid" BasedOn="{StaticResource DataGridStyle}"/>

当我不在Style我的 main 中添加标签时,ResourceDictionary它可以正常工作,但是该样式显然并未应用于所有项目。当我添加它时,我得到以下异常:

在“System.Windows.Markup.StaticResourceHolder”上提供值引发异常

想法?

4

1 回答 1

3

您是否尝试使用位于您的模块中的 app.xaml 中的样式,您使用 PRISM 将其导出到外壳中?模块不应该引用您的应用程序/shell 项目(启动项目)?那么他们可能只是不“了解”包含样式的项目?虽然问题是为什么它在 VS2010 中起作用......请让我知道,如果我误解了你的 MEF 场景,那么我会调整我的答案。

资源和棱镜有点棘手,我喜欢以下方法,我之前已经发布过,但它也可能对你的情况有所帮助。与将资源放在 app.xaml 中相比,它更适合 PRISM 解决方案:

我通常创建一个单独的样式项目,我从我想要样式的项目中引用它。样式项目具有如下固定结构:

造型项目

对于每个控件,我都会创建一个样式ResourceDictionary。例如对于我的按钮:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style x:Key="PrimaryButtonStyle" TargetType="Button">
    </Style>

    <Style x:Key="ToolbarButton" TargetType="Button">
        <Setter Property="BorderThickness" Value="0" />
        <Setter Property="Margin" Value="3"/>
        <Setter Property="Background" Value="Transparent"></Setter>
    </Style>
</ResourceDictionary>

在一个 mainResourceDictionary中,我合并了所有其他字典,在本例中是 IncaDesign.xaml 文件,您可以在上图中看到:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:controls="clr-namespace:Commons.Controls;assembly=Commons">

    <ResourceDictionary.MergedDictionaries>

        <ResourceDictionary Source="Converter/Converter.xaml" />
        <ResourceDictionary Source="Styles/Button.xaml" />
        <ResourceDictionary Source="BitmapGraphics/Icons.xaml" />

    </ResourceDictionary.MergedDictionaries>

    <!-- Default Styles -->
    <Style TargetType="Button" BasedOn="{StaticResource PrimaryButtonStyle}"></Style>
</ResourceDictionary>

请注意我是如何定义默认样式的,它们会自动应用,除非您另外指定。在您想要设置样式的每个窗口或控件中,您只需要引用这个ResourceDictionary. 注意源的定义,它是对程序集 ( /Commons.Styling;component...)的引用

<UserControl.Resources>        
    <ResourceDictionary>            
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Commons.Styling;component/IncaDesign.xaml" />
        </ResourceDictionary.MergedDictionaries>  
        <!-- Here you can added resources which belong to the UserControl only -->
        <!-- For example: -->
        <DataTemplate x:Kex="UcTemplate" /> 
    </ResourceDictionary>        
</UserControl.Resources>

现在将自动设置默认样式,如果您想显式访问资源,可以使用StaticResource.

<Viewbox Height="16" Width="16" Margin="0,0,10,0">
    <ContentControl Content="{StaticResource FileIcon32}" />
</Viewbox>

在我看来,这是一个非常好的解决方案,它适用于非常复杂的解决方案,包括模块化解决方案,例如使用 PRISM 构建的解决方案。

于 2013-03-13T10:08:57.823 回答