x:后面的代码中没有名称属性值

时间:2017-02-25 20:05:13

标签: c# xaml xamarin

我正在尝试在后面的代码中引用listView,但Visual Studio根本看不到它。这是我的代码:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="Practice11.Views.ProfilePage"
             xmlns:circleImage="clr-namespace:ImageCircle.Forms.Plugin.Abstractions;assembly=ImageCircle.Forms.Plugin.Abstractions">
  <ListView x:Name="listView">
    <DataTemplate>
      <ViewCell>
        <StackLayout Orientation="Horizontal" Padding="10">
          <circleImage:CircleImage x:Name="image" VerticalOptions="Center"/>
          <Label Text="{Binding Description}" HorizontalOptions="StartAndExpand"/>
        </StackLayout>
      </ViewCell>
    </DataTemplate>
  </ListView>
</ContentPage>

一切都应该没问题。我从来没有经历过这个。我已经尝试重建项目并重新启动Visual Studio,但这些都不起作用。

1 个答案:

答案 0 :(得分:1)

我不知道这是否是导致您出现问题的原因,但我认为您可能错过<ListView.ItemTemplate><ListView>之间的<DataTemplate>

编辑: 另外,根据下面粘贴的屏幕截图,您需要将x:Class属性值更改为&#34; Practice11.Views.ActivitiesPage&#34;让它运作起来。