0

我有一个外部库来保存我为 PlainViews 定义样式的所有主题。扩展 viewbase 的 plainview 类位于另一个项目中。我的应用程序不会为plainview 加载xaml。似乎找不到与 PlainView 关联的资源 ID

这是定义plainview的xaml

<Style x:Key="{ComponentResourceKey 
        TypeInTargetAssembly={x:Type Common:PlainView},
        ResourceId= PlainViewRsx}" 
        TargetType="{x:Type ListView}" 
        BasedOn="{StaticResource {x:Type ListBox}}">
</Style>

后面的 PlainView 代码是在另一个项目中定义的。

4

1 回答 1

0

我不确定我是否正确理解了你的问题(或者即使你仍然有这个问题),所以我告诉你我的方法,我想我需要类似的东西:

  1. 我在外部程序集中有我的主题(每个主题都表示为一个资源字典),可以通过在运行时交换类的资源字典来更改
  2. 资源的密钥存储在另一个程序集中
  3. 访问主题和资源再次位于不同的程序集中

首先确保您在所有需要的项目中拥有所有必需的参考资料。

存储密钥的类:

public class CoreResourceKeys
{
      public static readonly string BrushMyBrush = "MyBrush";
      public static ComponentResourceKey Brush_MyBrush
      {
          get
          {
              return new ComponentResourceKey(typeof(CoreResourceKeys), CoreResourceKeys.BrushMyBrush);
          }
      }
}

我的主题文件看起来像这样:

<ResourceDictionary xmlns=[...]
    xmlns:resources="clr-namespace:AssemblyThatStoresTheKeys;assembly=CoreResourceKeys">
    <SolidColorBrush x:Key="{ComponentResourceKey 
        TypeInTargetAssembly={x:Type resources:CoreResourceKeys}, 
        ResourceId={x:Static resources:CoreResourceKeys.BrushMyBrush}}"  
    Color="DarkMagenta"/>
</ResourceDictionary>

我想使用画笔的控件/页面看起来像这样:

<UserControl x:Class=[...] 
    xmlns:resources="clr-namespace:AssemblyThatStoresTheKeys;assembly=CoreResourceKeys">
    <TextBlock Background="{DynamicResource {x:Static resources:CoreResourceKeys.Brush_MyBrush}}" Text="The Shire"/>

那篇博文对我帮助很大:MSDN Support Forum - Loading Styles from My Assembly

我不确定这是否对你有帮助。如果不是,请尝试更详细地描述您的问题。

于 2012-02-08T11:45:57.333 回答