“http://schemas.microsoft.com/winfx/2009/xaml”命名空间中不存在“类”属性

时间:2017-02-23 10:03:18

标签: visual-studio xaml xamarin xamarin.forms

我正在使用Xamarin.Forms构建应用程序,在制作XAML页面时,我收到以下错误:

  

属性“类”不存在于   “http://schemas.microsoft.com/winfx/2009/xaml”命名空间。

这不是我制作的第一页,除了这一页外,所有其他页面似乎都运行正常。我已经检查了所述文件的引用和属性,它们看起来都很好。

这是我的代码:

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

背后的代码如下:

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

namespace XXXX
{
    public partial class ActOverviewView : ViewPage, IActOverviewView
    {
        public ActOverviewView()
        {
            InitializeComponent();
        }
    }
}

我正在使用Visual Studio 2015

1 个答案:

答案 0 :(得分:0)

应该是:

int(input())