0

データバインディングに問題があります。結果は正常に取得できますが、表示されません。これが私のコードです:

private List<FacebookFriend> friendList;    
public List<FacebookFriend> FriendList
        {
            get { return friendList; }
            set
            {
                friendList = value;
                NotifyPropertyChanged("FriendList");
            }
        }
private void GetFbFriends()
    {
        var fb = new FacebookClient(_accessToken);
        friendList = new List<FacebookFriend>();
        fb.GetCompleted += (o, e) =>
        {
            if (e.Error != null)
            {
                return;
            }
            var result = (JsonObject)e.GetResultData();

            foreach (var friend in (JsonArray)result["data"])
                friendList.Add(new FacebookFriend()
            {
                Id = (string)(((JsonObject)friend)["id"]),
                Name = (string)(((JsonObject)friend)["name"])
            });
            FriendList = friendList;
        };
        fb.GetAsync("me/friends");
    }

次に、ページのxamlで:

<ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" Grid.Row="2" Grid.ColumnSpan="3" ItemsSource="{Binding FriendList}">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                                <StackPanel Background="Red" Height="100" Width="300" Orientation="Horizontal">
                                <TextBlock Text="{Binding Path=Name}"/>
                                <TextBlock Text="{Binding Path=Id}"/>
                            </StackPanel>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>

正しいように見えますが、それでも何も表示されません。どんな助けでも大歓迎です。本当にありがとう!

4

1 に答える 1

1

ObservableCollection<>の代わりに使ってみてくださいlist<>。詳細については、これを参照してください

注:ObservableCollectionは、items get added, removed, or when the whole collection is refreshed.

于 2012-11-28T07:57:06.683 に答える