我已将共享样式放入应用程序中包含的单个资源字典中。例如,在一个名为的文件中,GlobalStyles.xaml
我有以下内容:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="BaseStyle" TargetType="FrameworkElement">...</Style>
<Style x:Key="ExtendedStyle" TargetType="FrameworkElement" BasedOn="{StaticResource BaseStyle}">...</Style>
</ResourceDictionary>
我将此文件包含在 app.xaml 中,如下所示:
<Application.Resources>
<ResourceDictionary Source="GlobalStyles.xaml" />
</Application.Resources>
这应该可以工作,但我收到 ExtendedStyle 的以下构建错误:Error: Index was outside the bounds of the array.
。如果我删除BasedOn
指令,我会收到相同的错误,BaseStyle
但不会收到ExtendedStyle
. 这真的很奇怪。任何人都可以解释这个错误吗?
编辑: 样式是:
<Style x:Key="BaseStyle" TargetType="FrameworkElement">
<!-- Background -->
<Setter Property="Control.Background" Value="{StaticResource White0ColorBrush}"/>
<!-- Border -->
<Setter Property="Control.BorderBrush" Value="{StaticResource Green1ColorBrush}"/>
<Setter Property="Control.BorderThickness" Value="0"/>
<!-- Font -->
<Setter Property="Control.FontWeight" Value="Light"/>
<Setter Property="Control.Foreground" Value="{StaticResource Green0ColorBrush}"/>
</Style>
和
<Style x:Key="ExtendedStyle" TargetType="FrameworkElement" BasedOn="{StaticResource BaseStyle}">
<Setter Property="Control.Background" Value="{StaticResource Green1ColorBrush}"/>
<Setter Property="Control.Foreground" Value="{StaticResource White0ColorBrush}"/>
</Style>
我不认为这两种风格有什么特别之处。在重新启动 VS 时,我收到了另一种依赖于ExtendedStyle
.
编辑 2:
我创建了一个新的空 WPF 应用程序项目并将该GlobalStyles.xaml
文件包含在 app.xml 中。那建得很好。然后我将这些行添加到 window.xaml 并得到相同的错误:
<Grid>
<Border BorderThickness="2" CornerRadius="5" BorderBrush="{StaticResource White0ColorBrush}" Style="{StaticResource ExtendedBaseStyle}">
<Grid>
<TextBox x:Name="SearchField" Height="20" BorderThickness="0" HorizontalAlignment="Stretch" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" />
</Grid>
</Border>
</Grid>