Xamarin创业公司

时间:2018-06-16 00:34:53

标签: c# visual-studio xamarin xamarin.forms

我是Xamarin的新手。我创建了一个C#跨平台项目,在创建项目后出现了几个错误,我不知道为什么会出现这些错误。我该如何解决这些错误?当我点击构建没有任何显示。当我单击“播放”时,我的默认应用程序不会显示。

Error List

的App.xaml

<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="App1.App">
    <Application.Resources>

    </Application.Resources>
</Application>

MainPage.xaml中

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:App1"
             x:Class="App1.MainPage">

    <StackLayout>
        <!-- Place new controls here -->
        <Label Text="Welcome to Xamarin.Forms!" 
           HorizontalOptions="Center"
           VerticalOptions="CenterAndExpand" />
    </StackLayout>

</ContentPage>

MainPage.xaml.cs中

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;

namespace App1
{
    public partial class MainPage : ContentPage
    {
        public MainPage()
        {
            InitializeComponent();
        }
    }
}

2 个答案:

答案 0 :(得分:0)

尝试使用Visual Studio重新安装Xamarin,似乎缺少表单安装。你可以在这里找到文件

https://docs.microsoft.com/en-us/xamarin/cross-platform/get-started/installation/windows

问候

答案 1 :(得分:0)

  • 右键点击您的项目
  • 管理Nuuget包
  • 已安装标签:检查是否安装了Xamarin,如果是,请更新,如果没有安装xamarin
  • 清理并重建您的项目。