我以跨移动应用程序的xamarin形式工作,但是IList变量想要显示Count然后抛出Exception。
异常详细信息:
Xamarin.Forms.Xaml.XamlParseException:位置19:64。在xmlns clr-namespace中找不到类型PersonFactory:MHG.Sample.Model; assembly = MHG.Sample
.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:MHG.Sample.Model;assembly=MHG.Sample"
x:Class="MHG.Sample.Templates.ListViewSampleWithLocalImage">
<ContentPage.Padding>
<OnPlatform x:TypeArguments="Thickness" iOS="0,20,0,0" />
</ContentPage.Padding>
<ContentPage.Resources>
<ResourceDictionary>
<local:ImageSourceConverter x:Key="ImageSourceConverter" />
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<StackLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<ListView x:Name="LstPeople" ItemsSource="{ Binding . }" Footer="{ Binding Count, Source={ x:Static local: PersonFactory.People }">
<ListView.Header>
<ContentView Padding="0,5" BackgroundColor="#fff">
<Label FontSize="Medium" TextColor="#000" Text="MHG Sample" HorizontalOptions="Center" VerticalTextAlignment="Center"></Label>
</ContentView>
</ListView.Header>
<ListView.ItemTemplate>
<DataTemplate>
<ImageCell Text="{ Binding Fullname }" TextColor="Black" Detail="{ Binding Description }" DetailColor="Gray" ImageSource="{Binding ImageUrl, Converter={ StaticResource ImageSourceConverter }"></ImageCell>
</DataTemplate>
</ListView.ItemTemplate>
<ListView.FooterTemplate>
<DataTemplate>
<ContentView Padding="0,5,5,0">
<Label FontSize="Medium"
TextColor="#666"
HorizontalOptions="Center"
HorizontalTextAlignment="End"
Text="{Binding ., StringFormat = '{0} kişi mevcut.' }"></Label>
</ContentView>
</DataTemplate>
</ListView.FooterTemplate>
</ListView>
</StackLayout>
</ContentPage.Content>
</ContentPage>
PersonFactory.cs文件内容(此文件是.xaml数据工厂)
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace MHG.Sample.Model
{
public static class PersonFactory
{
public static List<Person> People = new List<Person>();
static PersonFactory()
{
var list = new ObservableCollection<Person>();
for (var i = 0; i < new Random().Next(10, 100); i++)
{
var person = new Person(i, Faker.Name.First(), Faker.Name.Last(), $"{new Random().Next(1, 10)}.jpg")
{
Description = Faker.Lorem.Sentence()
};
list.Add(person);
}
People.AddRange(list);
}
}
}
编辑(2016/12/06 12:23 AM GMT +3)
解决了这个问题;
x:Static local: PersonFactory.People
删除局部空格:PersonFactory关键字之间。
x:Static local:PersonFactory.People
最佳答案
它在第19行有错误
<ListView x:Name="LstPeople" ItemsSource="{ Binding . }" Footer="{ Binding Count, Source={ x:Static local: PersonFactory.People }">
...请检查