我是Xamarin的新手。我创建了一个C#跨平台项目,在创建项目后出现了几个错误,我不知道为什么会出现这些错误。我该如何解决这些错误?当我点击构建没有任何显示。当我单击“播放”时,我的默认应用程序不会显示。
的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();
}
}
}
答案 0 :(得分:0)
尝试使用Visual Studio重新安装Xamarin,似乎缺少表单安装。你可以在这里找到文件
https://docs.microsoft.com/en-us/xamarin/cross-platform/get-started/installation/windows
问候
答案 1 :(得分:0)