我有一个库,其中包含一个 ThemeResources 文件,其中包含样式。
在字体文件夹中,我有一个字体文件 BuxtonSketch.ttf。Build Action 就像 RESOURCE
在 ThemeResources 中,我定义了字体:
<FontFamily x:Key="FontFamily-Sketch">pack://application:,,,/Resources/Fonts/#Buxton Sketch</FontFamily>
<Style x:Key="TextNormalStyle" TargetType="TextBlock">
<Setter Property="FontFamily" Value="{StaticResource FontFamily-Sketch}" />
</Style>
由于我的 UserControl 调用了 ProblemUserControl,我调用了但没有工作
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Resources/ThemeResources.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid>
<TextBlock Text="La pelicula PROMETHEUS!" Style="{StaticResource TextNormalStyle}" />
</Grid>
会发生什么?