gpt4 book ai didi

wpf - 根级链接资源字典和静态资源引用

转载 作者:行者123 更新时间:2023-12-01 01:07:46 24 4
gpt4 key购买 nike

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

我正在处理 WPF 控件库,但我没有 App.xaml 文件。我使用一个名为 的文件Styles.xml 存放常用画笔等资源。在我的用户控件的 XAML 文件中,我导入了资源,然后尝试使用 Brush 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 .有什么解决方法吗? 请注意,在设计器中一切正常,无论我在哪里引用 .

最佳答案

更改 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>
...

关于wpf - 根级链接资源字典和静态资源引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17315947/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com