【发布时间】: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