0

私はこの問題に何時間も取り組んできましたが、この部分的な xaml コードを取得しました。

<TextBlock Text="{Binding temprature}" Height="30" HorizontalAlignment="Left" Margin="13,119,0,0" Name="textBlock1" VerticalAlignment="Top" Width="68" />
            <TextBlock Height="30" HorizontalAlignment="Left" Name="commentsTextBlock" Text="Comments:" VerticalAlignment="Bottom" Margin="12,0,0,-31" />
            <ListBox Margin="2,785,-14,-33" ItemsSource="{Binding comments}" DataContext="{Binding}" Name="commentsListBox">
                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal" Margin="0,0,0,17">
                            <StackPanel Width="311">
                                <TextBlock Text="{Binding poster_username}" TextWrapping="NoWrap" Style="{StaticResource PhoneTextSubtleStyle}" TextTrimming="WordEllipsis" Width="Auto" Foreground="White" FontFamily="Segoe WP Semibold" />
                                <TextBlock Text="{Binding comment_text}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}" TextTrimming="WordEllipsis" MaxHeight="100" />
                            </StackPanel>
                        </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>
            </ListBox>

そして、ListBoxに表示する必要があるコメントのリストを含むこのクラス(Thread)があります。

    public class Thread : INotifyPropertyChanged
{
    public string title { get; set; }
    public string deal_link { get; set; }
    public string mobile_deal_link { get; set; }
    public string deal_image { get; set; }
    public string deal_image_highres { get; set; }
    public string description { get; set; }
    public string submit_time { get; set; }
    public bool hot_date { get; set; }
    public string poster_name { get; set; }
    public double temperature { get; set; }
    public double price { get; set; }
    public int timestamp { get; set; }
    public string expired { get; set; }
    public Forum forum { get; set; }
    public Category category { get; set; }
    public object merchant { get; set; }
    public object tags { get; set; }
    public int thread_id { get; set; }
    public string visit_link { get; set; }
    public string hot_time { get; set; }
    public int comment_count { get; set; }
    public string availability { get; set; }
    public string can_vote { get; set; }
    public string seen { get; set; }

    public List<Comment> comments { get; set; }
    public event PropertyChangedEventHandler PropertyChanged;

    public void Convert2Unicode()
    {
        UnicodeEncoding unicode = new UnicodeEncoding();
        Byte[] encodedBytes = unicode.GetBytes(title);
        title = String.Format("[{0}]", title);


    }


    private void NotifyPropertyChanged(String propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (null != handler)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }

    public void SetComments(string content)
    {
        PaginatedComments commentsList;
        this.comments.Clear();

        DataContractJsonSerializer serializer =
        new DataContractJsonSerializer(typeof(PaginatedComments));
        using (MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(content)))
        {
            commentsList = (PaginatedComments)serializer.ReadObject(ms);
        }


        foreach (var thread in commentsList.data.comments)
        {
            this.comments.Add(thread);
        }

    }
    public Thread()
    {
        comments = new List<Comment>();

    }
    public void addComments()
    {
        List<string> parameters = new List<string>();
        parameters.Add("thread_id=" + thread_id);
        parameters.Add("results_per_page=10");
        parameters.Add("page=1");
        // Set the data context of the listbox control to the sample data
        APICalls.makeRequest(APICalls.ViewingPaginatedComments, parameters, SetComments);

    }
    //
    // Sets the "Seen" variable depending if the item is new (since the last time the application was opened
    //
    public void updateNewItems()
    {
        try
        {
            int last_seen = (int)IsolatedStorageSettings.ApplicationSettings["lastrun"];

            if (last_seen < timestamp)
            {
                seen = "New";
            }
            else
            {
                seen = "";
            }
        }
        catch (System.Exception e)
        {
            IsolatedStorageSettings.ApplicationSettings["lastrun"] = APICalls.GetIntTimestamp();
            IsolatedStorageSettings.ApplicationSettings.Save();
            MessageBox.Show(e.Message);
        }

        IsolatedStorageSettings.ApplicationSettings["lastrun"] = APICalls.GetIntTimestamp();
        IsolatedStorageSettings.ApplicationSettings.Save();

    }
}
public class Comment
{
    public string poster_username { get; set; }
    public string post_date { get; set; }
    public string comment_text { get; set; }
    public int timestamp { get; set; }
    public int like_count { get; set; }
    public string comment_edit_text { get; set; }
}

public class CommentData
{
    public List<Comment> comments { get; set; }
    public int comment_count { get; set; }
    public int total_comments { get; set; }
}

public class PaginatedComments
{
    public string response_status { get; set; }
    public CommentData data { get; set; }
}

DataCotext をこの特定のスレッドに変更する前に、スレッドにコメントをロードするとします。コメントは表示されますが、DataContext を変更してページに移動した後にコメントを更新すると、コメントは表示されません (xaml ページの残りの部分に、同じインスタンスにバインドされている他のフィールドがあり、完全に機能します。コメントが機能しません!

あなたの助けに本当に感謝します!ありがとう

4

2 に答える 2

2

あなたの財産は単純List<T>です。イベントを使用して、何かが変更されたときにSilverlightに信号を送る必要があります。

アイテムが追加/削除されているときにAList<T>はイベントを発生させないため、Silverlightは新しいアイテムを検出できず、UIを更新しません。これを機能させる最も簡単な方法は、通常ObservableCollection<T>、リストの代わりに使用することです。このコレクションは、Silverlightが聞くことを知っているイベントを発生させます。

これが機能するためには、U / I(ディスパッチャー)スレッド以外のスレッドからAdd / Remove /Clearを呼び出さないでください。Silverlightコントロールはスレッドセーフではありません(イベントは、呼び出しの追加/削除/クリア)。これを行うには、SetCommentsメソッドからDispatcher.BeginInvokeを呼び出すようにしてください(フェッチメカニズムが何であれ、コールバックが発生しているように見えるため)。

または、コメントをフェッチするときに新しいListオブジェクトを再生成し、SetCommentsメソッドでNotifyPropertyCHangedイベントを発生させることもできますが、これにより、現在の選択が失われ、リストが一番上にリセットされます。行う。

于 2012-07-02T19:58:01.487 に答える
2

あなたが使用している必要があります

public ObservableCollection<Comment> comments{ get; set;}

それ以外の

public List<Comment> comments { get; set; } 

ObservableCollection は、項目の 1 つ (この場合は Comment ) が追加または削除されるたびに、更新通知をビューに送信します。

注: Comment は更新されません。項目を Comment の更新にバインドするには、Comment に INotifyPropertyChanged を実装する必要があります。

于 2012-07-02T19:52:28.543 に答える