繁体   English   中英

如何在Windows Phone 7中显示Json数据

[英]How to display Json data in windows phone 7

我是Windows Phone的初学者,我不知道如何从JSON字符串填充列表框。 在我的应用程序中,将有一个来自Web服务的Json字符串。

因此,这是我的json字符串[json数组]:

{
"type":"ok",
"result":
       {
       "Country":[{
                    "title":"Country-1",
                    "description":"US",
                    "status":"1"
                  },
                  {
                    "title":"Country-2",
                    "description":"Australia",
                    "status":"0"
                   },
                   {
                    "title":"Country-3",
                    "description":"Brazil,
                    "status":"0"
                  }      
                 ]
        }
}

我想将其绑定到我的应用程序的列表框中。 我真的不知道如何在列表框中绑定。

请给我完整的xaml和c#代码。

首先,您需要一个好的库来帮助您将json字符串转换为c#模型表示形式(DeSerialization)。

您可以编写自己的代码,使用内置平台解串器或仅使用NewtonSoft.json

要为WP安装NewtonSoft,请使用Nuget。 请注意,您必须使用版本5.0.8,因为6.x系列不支持Windows Phone 7。

Nuget软件包管理器

我已经简化了您的json字符串,不明白为什么country属性会包含国家列表?

C#,在您的代码后面

public partial class MainPage : PhoneApplicationPage
{
    // Constructor
    public MainPage()
    {
        InitializeComponent();

        //BindCountries();
    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        BindCountries();
    }

    private void BindCountries()
    {
        var json =
            "{\"type\":\"ok\",\"countries\":[{\"title\":\"Country-1\",\"description\":\"US\",\"status\":\"1\"},{\"title\":\"Country-2\",\"description\":\"Australia\",\"status\":\"0\"},{\"title\":\"Country-3\",\"description\":\"Brazil\",\"status\":\"0\"}]}";

        var countryResult = JsonConvert.DeserializeObject<CountryResult>(json);

        if (countryResult.Type.Equals("ok", StringComparison.InvariantCultureIgnoreCase))
        {
            lstCountries.ItemsSource = countryResult.Countries;
        }

    }
}

public class CountryResult
{
    public string Type { get; set; }
    public IEnumerable<Country> Countries { get; set; }
}

public class Country
{
    public string Title { get; set; }
    public string Description { get; set; }
    public int Status { get; set; }
}

Xaml:

<phone:PhoneApplicationPage 
x:Class="PhoneApp1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>

    <!--TitlePanel contains the name of the application and page title-->
    <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
        <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
        <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>

    <!--ContentPanel - place additional content here-->
    <Grid  x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <ListBox x:Name="lstCountries">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel>
                        <TextBlock FontSize="{StaticResource PhoneFontSizeExtraLarge}" Text="{Binding Title}" />
                        <TextBlock Text="{Binding Description}" />
                    </StackPanel>

                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

    </Grid>
</Grid>

结果:

结果

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM