4

我知道this,它不适用于我的情况,而this,我不确定它是否可以适应。

我正在开发一个 WPF 控件库,但我没有 App.xaml 文件。我使用一个名为Styles.xml的文件来存储常用画笔和其他资源。在我的用户控件的 XAML 文件中,我导入资源,然后尝试使用画笔sBrush作为背景。

这有效,除了在根级别:

<UserControl x:Class="CMControls.TitledWindow"
             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"
             Background="{StaticResource ResourceKey=sBrush}"> <!--EXCEPTION!-->

    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary
                 Source="pack://application:,,,/CMControls;component/Styles.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>

    <Canvas Background="{StaticResource ResourceKey=sBrush}" ... <!--Ok.-->
...

我认为发生这种情况是因为当根元素被实例化时,它的子元素不是,包括UserControl.Resources。有什么解决方法吗?请注意,无论我在哪里引用,在设计器中一切正常

4

1 回答 1

4

在资源合并行后更改UserControl背景,因为您必须在使用它们之前添加资源!

 <UserControl x:Class="CMControls.TitledWindow"
         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="pack://application:,,,/CMControls;component/Styles.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</UserControl.Resources>
 <UserControl.Background>  <!--Set background here!-->
    <StaticResource ResourceKey="sBrush"></StaticResource> 
 </UserControl.Background>
 ...
于 2013-06-26T12:13:38.670 回答