名称空间中不存在类型或命名空间名称 - 没有引用

时间:2017-01-19 11:05:35

标签: c# wpf visual-studio namespaces

我遇到了一个奇怪的问题(Visual Studio 2012):

“名称空间'XX.X'中不存在类型或命名空间名称'X'(您是否缺少程序集引用?)... \ MyUserControl.g.cs ....

我有以下用户控件:

<UserControl x:Class="xxxxxx.MyUserControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <StackPanel>
        <TextBlock Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type UserControl}}, Path=h}" FontWeight="Bold" FontSize="12" Foreground="Black" />
        <TextBlock Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type UserControl}}, Path=hd}" FontSize="12" Margin="10,10,0,5" MaxWidth="250" TextWrapping="Wrap" Height="Auto" Foreground="Black"/>
    </StackPanel>
</UserControl>

当我尝试构建项目时, .g.cs 文件坚持要添加引用中不存在的命名空间,并且不要在xaml中以任何方式使用它。

我试着打扫干净并重建......没有任何帮助。

通常这样的问题是在命名空间没有正确编写的时候,但是这里我没有引用任何其他命名空间,所以很奇怪。

其他人遇到此问题并可以提供帮助吗?

1 个答案:

答案 0 :(得分:0)

垫子评论帮助我解决了这个问题:我在Generic.xaml中找到了参考