Visual Studio 2017无法识别名称空间

时间:2018-08-14 16:17:04

标签: c# xaml uwp user-controls

我正在使用UWP,C#/ XAML开发应用程序。

我有一堆UserControl,最近将.xaml和.xaml.cs文件移动到一个名为VisualControls的专用文件夹中,并将.VisualControls添加到所有类的命名空间中

IDE好像是VS2017中的错误,IDE无法在名称空间中找到控件类。

VS does not find the class of user control, if I remove the xmlns reference, the IDE suggests the very same xmlns reference, and the error persist

VS找不到用户控件的类,如果我删除文件Capacitor.xaml(或GroupBox控件的其他用户)中的xmlns:VisualControls引用,则IDE建议使用完全相同的xmlns引用,并且错误仍然存​​在

在GroupBox用户控件的CS下面 CS file of UserControl

在GroupBox用户控件的XAML下面 XAML file of UserControl

我被困在这里.. :(,我该怎么办?

1 个答案:

答案 0 :(得分:1)

这是一个常见的错误,但解决起来非常简单,右键单击您的解决方案并清理解决方案两次,然后重建您的解决方案即可解决问题。