【问题标题】:How can I fix this error at creating new page?如何在创建新页面时解决此错误?
【发布时间】:2018-07-30 19:05:00
【问题描述】:

我有一个 Xamarin.Forms 项目。

在这个项目中,我已经有一个空白页面,但我添加了一个新页面,即错误开始显示的时间。

显示的错误是:

Error XLS0414
The type 'ContentPage' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
TaskX.Android New.xaml
1 

Error XLS0414  The type 'StackLayout' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
TaskX.Android New.xaml
10 

编辑
这是代码:

<ContentPage>
    x:Class="TaskX.New"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:TaskX"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"

    <StackLayout>

    </StackLayout>

</ContentPage>

【问题讨论】:

    标签: c# android ios xaml xamarin


    【解决方案1】:

    我不久前遇到了这个问题。试试下面的这些步骤,它们对我有用。

    1. 删除 Xamarin.Forms 并重新安装 Xamarin.forms。

    2. 更新所有 Nugets 包。

    3. 清理并构建解决方案。

    如果问题仍然存在:

    1. 重新启动 Visual Studio 和/或 PC。

    2. 确保您的 Visual Studio 是最新的,并且您没有任何待处理的 Windows 更新要做。

    3. 修复 Visual Studio。

    4. 您还可以从“C:\Users{User}\AppData\Local\NuGet\Cache”清除 NuGet 缓存

    【讨论】:

    【解决方案2】:

    试试这个:
    所有的引用都在&lt;contentPage&gt; 标签内。

    <ContentPage
       x:Class="TaskX.New"
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
       xmlns:local="using:TaskX"
       xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
       mc:Ignorable="d">
    
       <StackLayout>
    
       </StackLayout>
    
    </ContentPage>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-11-03
      • 2019-10-26
      • 1970-01-01
      • 2021-09-23
      • 1970-01-01
      • 2021-12-03
      • 2021-08-20
      • 1970-01-01
      相关资源
      最近更新 更多