c# - 如何在windows phone 7中显示Json数据

标签 c# asp.net json xaml 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"
                  }      
                 ]
        }
}

我想在我的应用程序的列表框中绑定(bind)它。 我真的不知道, 如何绑定(bind)列表框。

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

最佳答案

首先,您需要一个好的库来帮助您转换 json 字符串到您的 C# 模型表示中(反序列化)。

您可以自己编写,使用内置的平台反序列化器或只使用 NewtonSoft.json

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

Nuget package manager

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

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>

结果:

Result

关于c# - 如何在windows phone 7中显示Json数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18781509/

相关文章:

asp.net - Visual Studio 2013 Asp.net 配置工具

c++ - 从帐户服务器检索数据

c# - 如何在 Visual Studio 2013 C# 中停止自动完成

c# - SQLite插入在DAL中不起作用,没有出现错误?

C#:字符串连接不起作用

c# - 从 app.config 文件的 web.config 部分获取值?

c# - 计算结果 LINQ

asp.net - 检查 HTTP 请求查询字符串并在出现意外参数时指示错误是个好主意吗?

ios - 解析 JSON 并将其变为变量

php - json编码阿拉伯语问题