2

我已将共享样式放入应用程序中包含的单个资源字典中。例如,在一个名为的文件中,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>
4

1 回答 1

0

它必须是我正在使用的 VS2012 的错误。我搬到了VS2010,问题就消失了。我对 VS2012 设计器有很多问题。它经常挂起,抛出异常,在没有语法错误时抱怨语法错误,现在这个。我现在会坚持使用 VS2010。

于 2013-06-19T10:04:21.260 回答