WPF baml序列化错误?

时间:2012-11-26 18:43:18

标签: c# wpf xaml baml

以下XAML在运行时生成XamlParseException

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib">
  <Grid>
    <Grid.Resources>
      <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
          <ResourceDictionary>
            <TextBlock x:Key="{x:Type TextBlock}">
              <Run Text="Aaaa"/>
            </TextBlock>
          </ResourceDictionary>
        </ResourceDictionary.MergedDictionaries>
        <sys:String x:Key="aaa"></sys:String>
      </ResourceDictionary>
    </Grid.Resources>
    <Border Child="{StaticResource {x:Type TextBlock}}"/>
  </Grid>
</Window>
  

XamlParseException:''TextBlock'对象上缺少键值。'行号“10”和行位置“20”。

我做错了什么?

1 个答案:

答案 0 :(得分:-1)

键不是类型,它们是字符串。