在 Xamarin Studio 中找不到类型或命名空间名称“页面”
Posted
技术标签:
【中文标题】在 Xamarin Studio 中找不到类型或命名空间名称“页面”【英文标题】:The type or namespace name 'Page' could not be found in Xamarin Studio 【发布时间】:2014-07-23 08:41:27 【问题描述】:我正在开发 Xamarin Studio 和它的初学者。我正在使用 Forms 制作跨平台应用程序。 ut 基本项目在我构建它时出现此错误“错误 CS0246:找不到类型或命名空间名称'页面'(您是否缺少 using 指令或程序集引用?)”如果有人知道答案,请帮助我。这是app.cs的代码:
using System;
using Xamarin.Forms;
namespace CrossPlatformAppForms
public class App
public static Page GetMainPage () //This is the line where i'm getting the error
return new ContentPage
Content = new Label
Text = "Hello, Forms !",
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.CenterAndExpand,
,
;
MyApp.android 中的另一件事是我收到目标框架不兼容的警告(.Net framework 4.5...)
【问题讨论】:
正如错误所说,您是否缺少对 Xamarin.Forms 的引用? The type or namespace name 'Xamarin' missing in xamarin studio 的可能重复项 @Cheesebaron 没有朋友,这不是我检查过的解决方案,并且 notj=hing 丢失了。可能是缺少任何 .dll 文件。 引用 IDE 的意思是……“你忘了实际引用程序集吗?!” 重复***.com/questions/23994273/… 【参考方案1】:它不是 The type or namespace name 'Xamarin' missing in xamarin studio 的重复项(解决链接中问题的解决方案是在参考中添加 Xarmin.Forms.Addin.dll),但我目前在我的 Xamarin Studio 中也面临这个问题,我认为这与 .NET 4.5 框架的兼容性有关。
【讨论】:
这里没有答案或解决方案可以尝试,这将更适合作为评论。以上是关于在 Xamarin Studio 中找不到类型或命名空间名称“页面”的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin.iOS 在 Visual Studio 2019、2022 中找不到配置文件
在 stripe.NET-payments 基本示例(Xamarin)中找不到类型
对类型“Assembly”的引用声称它在“System.Runtime”中定义,但在 Xamarin UWP 中找不到