在xaml中样式化或格式化json数据

本文关键字:格式化 json 数据 xaml 样式 | 更新日期: 2023-09-27 18:14:48

我正在开发一个windows phone 8.1应用程序,但由于我是一个初学者,我的背景更倾向于我编写css和神奇作品的网站。我发现很难格式化JSON数据得到绑定到我的xaml。

JSON代码

{"Groups":[
  {
    "UniqueId": "BasicxGroup1",
    "Title": "Startup",
    "Subtitle": "test subtitle 1",
    "ImagePath": "Assets/startup1.jpg"
    "Items":
    [
      {
        "UniqueId": "Group-1-Item-1",
        "Title": "Item Title: 1",
        "Subtitle": "Item Subtitle: 1",
        "ImagePath": "Assets/LightGray.png",
        "Description" : "test description",
        "Content" : "test content some formatting needed"
      }
    ]
  }
]
}

我可以使用其他选项,比如我可以添加另一个键到我的组项,然后绑定到我的xaml,然后我可以单独设置它的样式但只是为了格式化,这是必要的吗?我还有别的选择吗?

My XAML code

<Grid Grid.Row="0">
            <TextBlock Margin="10,0,10,0" FontSize="18" Text="{Binding Description}" />
        </Grid>
<Grid Grid.Row="1">
            <TextBlock Margin="10,0,10,0" FontSize="18" Text="{Binding Content}" /></Grid>
        </Grid>

我是新手,我正在学习,所以如果我有任何错误,请指出我。

在xaml中样式化或格式化json数据

考虑使用RichTextBox控件