WPF-Project System.Windows.Markup.XamlParseException

时间:2015-10-26 10:59:39

标签: wpf visual-studio xaml

我希望有人可以帮助我。 我有一个WPF项目(工作正常),我想用它 在另一个。但是我得到了一个System.Windows.Markup.XamlParseException。

在:

<Expander IsExpanded="True"
                          Header="Symbols"
                          Margin="0,1,0,0"
                          Content="{StaticResource SymbolStencils}" />

我的SymbolStencils看起来像:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:s="clr-namespace:DiagramDesigner">

<s:Toolbox x:Key="SymbolStencils"
           DefaultItemSize="55,55">
    <ItemsControl.Items>
        <Button IsHitTestVisible="False">Button</Button>
        <ComboBox IsHitTestVisible="False" />
        <Label IsHitTestVisible="False" >Label</Label>
        <ListBox IsHitTestVisible="False" />
        <Rectangle IsHitTestVisible="False" />
        <TextBox IsHitTestVisible="False" >Text</TextBox>
        <TextBlock IsHitTestVisible="False" >Text</TextBlock>
        <RadioButton IsHitTestVisible="False" />
        <CheckBox IsHitTestVisible="False" />          
    </ItemsControl.Items>
</s:Toolbox>

1 个答案:

答案 0 :(得分:0)

<Window x:Class="DiagramDesigner.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:s="clr-namespace:DiagramDesigner"
    WindowStartupLocation="CenterScreen"
    Title="Diagram Designer Part 2"
    FontFamily="SegoeUI"
    Height="850"
    Width="1100">

这是我在XAML文件中的头脑