为什么我不能在 wpf 的资源字典中使用我的静态资源?
Why can't I use my static resource in a resource dictionary in wpf?
我使用这样的 ResourceDictionary
设计了我的控件(单选按钮):
//in SidebarMenuButtonTheme.xaml
<Style TargetType="{x:Type custom:MenuItem}"
x:Key="MenuButtonTheme">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type custom:MenuItem}">
<Grid Background="{TemplateBinding Background}">
<TextBlock x:Name="SidebarRadioButtonMenuText"
Text="{TemplateBinding Property=Content}"
Foreground="#7D8083"
FontSize="14.59"
FontFamily="{StaticResource NunitoBold}" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
当我定义 Source
时,FontFamily
工作正常:例如
FontFamily="/UiDesign/Fonts/#Nunito"
但是当我使用 StaticResource
作为 FontFamily
FontFamily="{StaticResource NunitoBold}"
我在 UI:
中收到此错误
(错误是:MenuItem类型的元素[MenuItem]无法显示)
这就是我在 App.xaml
中声明字体资源的方式
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/UiDesign/Theme/SidebarMenuButtonTheme.xaml" />
</ResourceDictionary.MergedDictionaries>
<FontFamily x:Key="NunitoBold">/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
</ResourceDictionary>
</Application.Resources>
我不知道为什么会出现错误,尽管在我键入 StaticResource
:
时智能感知有效
但是当我在 ResourceDictionary
中定义 FontFamily
资源 时,菜单项将正常显示。
//I added this above my Style tag...
<FontFamily x:Key="NunitoBold">/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
更新:
但是,当我在 UserControl
中使用 StaticResource
(用于字体)时,我可以很好地使用它。我的问题是,我可以在 ResourceDictionay 中使用 App.xaml 中的资源吗?
尝试使用 pack URI:
引用字体
<FontFamily x:Key="NunitoBold">pack://application:,,,/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
您还需要确保路径正确,即 UiDesign
是项目根目录下的一个文件夹,Fonts
字体所在的文件夹。
我已经找到了解决方案,我没有使用 StaticResource
,而是使用了 DynamicResource
。现在我可以从 App.xaml
访问我的字体到我的 ResourceDictionary
.
我使用这样的 ResourceDictionary
设计了我的控件(单选按钮):
//in SidebarMenuButtonTheme.xaml
<Style TargetType="{x:Type custom:MenuItem}"
x:Key="MenuButtonTheme">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type custom:MenuItem}">
<Grid Background="{TemplateBinding Background}">
<TextBlock x:Name="SidebarRadioButtonMenuText"
Text="{TemplateBinding Property=Content}"
Foreground="#7D8083"
FontSize="14.59"
FontFamily="{StaticResource NunitoBold}" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
当我定义 Source
时,FontFamily
工作正常:例如
FontFamily="/UiDesign/Fonts/#Nunito"
但是当我使用 StaticResource
作为 FontFamily
FontFamily="{StaticResource NunitoBold}"
我在 UI:
中收到此错误(错误是:MenuItem类型的元素[MenuItem]无法显示)
这就是我在 App.xaml
中声明字体资源的方式<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/UiDesign/Theme/SidebarMenuButtonTheme.xaml" />
</ResourceDictionary.MergedDictionaries>
<FontFamily x:Key="NunitoBold">/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
</ResourceDictionary>
</Application.Resources>
我不知道为什么会出现错误,尽管在我键入 StaticResource
:
但是当我在 ResourceDictionary
中定义 FontFamily
资源 时,菜单项将正常显示。
//I added this above my Style tag...
<FontFamily x:Key="NunitoBold">/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
更新:
但是,当我在 UserControl
中使用 StaticResource
(用于字体)时,我可以很好地使用它。我的问题是,我可以在 ResourceDictionay 中使用 App.xaml 中的资源吗?
尝试使用 pack URI:
引用字体<FontFamily x:Key="NunitoBold">pack://application:,,,/UiDesign/Fonts/Nunito-Bold.ttf#Nunito</FontFamily>
您还需要确保路径正确,即 UiDesign
是项目根目录下的一个文件夹,Fonts
字体所在的文件夹。
我已经找到了解决方案,我没有使用 StaticResource
,而是使用了 DynamicResource
。现在我可以从 App.xaml
访问我的字体到我的 ResourceDictionary
.