1

我正在编写一些多目标应用程序(.net 4.0)。我有 ResourceDictionay 的问题。 场景: 创建 WPF CustomControlLibrary - 将其命名为“WpfLib”,默认命名空间“test” 在 WpfLib 创建 UserControl - 将其命名为“uc”

<UserControl x:Class="test.uc"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="res.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>   
    <Grid>
        <Button Style="{StaticResource bStyle}" Content="Button" Height="23"  Width="75" />
    </Grid>
</UserControl>

“res.xaml”的代码

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style x:Key="bStyle" TargetType="{x:Type Button}">
        <Setter Property="Background" Value="Red" /> 
    </Style>
</ResourceDictionary>

现在一切都很好......按钮是红色的

现在让我们添加新的 Project Silverlight 应用程序并将其命名为“SlApp”(Silverlight 5)(命名空间“test”)让我们从“WpfLib”中添加“uc”作为链接(“uc.xaml”“uc.xaml.cs”)。在“SlApp”中创建新的 ResourceDictionary 并将其命名为 res.xaml,如下所示:

 <ResourceDictionary
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
        <Style x:Key="bStyle" TargetType="Button">
            <Setter Property="Background" Value="Blue" />
        </Style>
    </ResourceDictionary>

新 ResourceDictionary 具有 TargetType="Button",因为 SilverLight 不支持 x:Type。背景设置为蓝色而不是红色。

问题就从这里开始了。
我如何使它工作?控制 uc 在合并时显示错误(在 Silverlight 版本中)。我在 Wpf 和 Silverlight 版本的用户控件上需要不同的 ResourceDictionary。ClassLibrary 不支持 app.xaml,我不能使用默认样式。

4

0 回答 0