无法在Windows Phone 7.1应用程序的列表框中显示来自json webservice的数据

时间:2011-12-27 12:13:13

标签: c# json web-services windows-phone-7.1

我正在尝试从我的Windows Phone应用程序中使用json webservice,并将检索到的数据显示在列表框中。我能够从webservice(在e.result中)获取数据,但是,我无法在列表框中获取数据。 以下是我的xaml代码。

 <Grid x:Name="ContentPanel" Grid.Row="2" Margin="12,0,12,0">
        <Grid.Background>
            <SolidColorBrush Color="Black" >
            </SolidColorBrush>
            <!--<ImageBrush ImageSource="/images/BG@.png" 5F91F5/>-->
        </Grid.Background>
        <ListBox x:Name="carslist" Padding="0,0,0,0" HorizontalAlignment="Center"  VerticalAlignment="Top" >
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Border Margin="3" Height="50">
                        <StackPanel Background="Transparent" Orientation="Vertical" Width="420" Height="60">
                            <StackPanel Background="Transparent" Orientation="Horizontal" Width="420" Height="60">
                                <TextBlock Foreground="White" HorizontalAlignment="Left" TextWrapping="NoWrap"  VerticalAlignment="Center" FontSize="26" Text="{Binding cartype}"/>
                                <TextBlock Foreground="White" HorizontalAlignment="Left" TextWrapping="NoWrap"  VerticalAlignment="Center" FontSize="26" Text="{Binding carcode}"/>
                            </StackPanel>
                        </StackPanel>
                    </Border>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>

以下是我的xaml.cs代码。

 public MainPage()
    {
        InitializeComponent();
        string key = "123";
        WebClient getcars = new WebClient();
        getcars.DownloadStringCompleted += new DownloadStringCompletedEventHandler(getcars_DownloadStringCompleted);
        getcars.DownloadStringAsync(new Uri("http://myurl?key=" + "{" + key + "}"));

    }


    void getcars_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        Stream stream = new MemoryStream(Encoding.Unicode.GetBytes(e.Result));
        DataContractJsonSerializer obj = new DataContractJsonSerializer(typeof(List<cars>));
        List<cars> result = obj.ReadObject(stream) as List<cars>;
        carslist.ItemsSource = result;

    }

}

public class cars
{
    public string carcode { get; set; }
    public string cartitle { get; set; }
    public string cartype { get; set; }
    public string carid { get; set; }
}

有人可以帮我解决我的问题吗?...提前致谢。

1 个答案:

答案 0 :(得分:0)

很清楚为什么它不起作用。 List<cars> result在getcars_DownloadStringCompleted处理程序中创建为局部变量,并具有该处理程序的本地范围,因此在此处理程序完成时会立即收集垃圾。 这就是为什么你没有看到任何数据。

要解决此问题,请在页面上创建公共属性,例如

public ObservableCollection<cars> Results {get;set;}

并在getcars_DownloadStringCompleted处理程序中将结果添加到Result集合中。然后在代码中执行此操作:

carslist.ItemsSource = this.Results;

它应该有用。

在添加结果集之前,还要确保从JSon服务反序列化的项有效。我会在调试器中将断点放在您将项目分配给Results集合的行中,并确保在那里添加了一些东西,只是为了确保。

如果你问我,也应该在汽车类中实现INotifyPropertyChanged。