gpt4 book ai didi

xamarin - Xamarin Studio 中的类型或命名空间名称 'Xamarin' 缺少错误

转载 作者:行者123 更新时间:2023-12-03 11:03:54 28 4
gpt4 key购买 nike

我收到此错误:

"MyApp\App.cs(7,7): Error CS0246: The type or namespace name 'Xamarin' could not be found (are you missing a using directive or an assembly reference?) (CS0246)".



我正在使用 Xamarin Studio 通过 Xamarin.Forms 制作跨平台应用程序。每当我构建基本表单项目时,我都会收到此错误,但我不知道为什么。

我是 Xamarin 的新手。

这是app.cs的代码:

using System;
using Xamarin.Forms; //This is the line where error occurs

namespace FIrstFormProject
{
public class App
{
public static Page GetMainPage ()
{
return new ContentPage
{
Content = new Label
{
Text = "Hello, Forms !",
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.CenterAndExpand,
},
};
}
}
}

最佳答案

MihaMarkic 的帖子 here引导我找到正确的答案。对于解决方案中的每个项目,您需要执行以下操作:

  • 在解决方案选项卡中选择项目
  • 选择顶部菜单中的“项目”
  • 选择“添加 Nuget 包...”
  • 搜索“Xamarin.forms”
  • 将“Xamarin.forms”添加到该项目

  • 这是让它在我的 Mac 上工作的工作流程。我不确定您的 PC 用户的确切步骤是什么。

    关于xamarin - Xamarin Studio 中的类型或命名空间名称 'Xamarin' 缺少错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23994273/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com