2016-12-05 19 views
1

私はクロス・モバイル・アプリケーション用のxamarinフォームで動作しますが、IList変数はCountを表示してから例外をスローします。Xamarin Forms例外がxmlns clr-namespaceに見つかりません:

例外の詳細: Xamarin.Forms.Xaml.XamlParseException:位置19:64。 xmlns CLR名前空間には見られないPersonFactoryを入力します。MHG.Sample.Model;アセンブリ= 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月6日0:23 GMT +3)

この問題を解決しました。 x:Static local: PersonFactory.People 空白を削除します。local:PersonFactoryキーワードの間にあります。 x:Static local:PersonFactory.People

答えて

2

それは

<ListView x:Name="LstPeople" ItemsSource="{ Binding . }" Footer="{ Binding Count, Source={ x:Static local: PersonFactory.People }"> 
が...その

を確認してください行でエラーが発生しています
1

プロジェクト設定で、「アセンブリ名」がMHG.Sampleに設定されていることを確認します。

Visual Studioの場合:共有(ポータブル)プロジェクトを右クリックし、[プロパティ]をクリックします。 [ライブラリ]タブには、[アセンブリ名]というラベルの付いたボックスが表示されます。

OR Xamarin Studioで、

:右共有プロジェクト(ないのiOSやAndroidプロジェクト)をクリックし、[オプション]をクリックします。 [出力]画面には、[アセンブリ名]というラベルの付いたボックスが表示されます。

関連する問題