这是我第一次创建Windows 8应用程序,因为我必须参加学校项目。我对xaml中的数据绑定等并不陌生,但在创建W8应用程序时它是不同的,因为它不像我通常那样工作。
XAML代码:(我的datatemplate在)
<ItemsControl ItemTemplate="{StaticResource test}" DataContext="{Binding ListLineup}">
<DataTemplate x:Key="test">
<StackPanel>
<TextBlock Text="{Binding Date}"></TextBlock>
</StackPanel>
</DataTemplate>
模型:(从JSON文件加载的数据)
public class LineUp
{
public string Id { get; set; }
public string Date { get; set; }
public string From { get; set; }
public string Until { get; set; }
public LineUp(string id, string date, string from, string until)
{
this.Id = id;
this.Date = date;
this.From = from;
this.Until = until;
}
public static async Task<List<LineUp>> GetLineUp()
{
List<LineUp> lineup = new List<LineUp>();
using (HttpClient client = new HttpClient())
{
string url = @"http://localhost:28603/api/LineUp";
Uri uri = new Uri(url);
using (HttpResponseMessage response = await client.GetAsync(uri))
{
if (response.IsSuccessStatusCode)
{
string content = await response.Content.ReadAsStringAsync();
content = "{'lineups':" + content + "}";
ListLineUp CollectionOfLineUps = await JsonConvert.DeserializeObjectAsync<ListLineUp>(content);
foreach (LineUp newLineup in CollectionOfLineUps.lineups)
{
lineup.Add(newLineup);
}
}
else
{
Debug.WriteLine("Exception when getting the LineUps. API is down ");
}
}
}
return lineup;
}
}
public class ListLineUp
{
public List<LineUp> lineups { get; set; }
}
XAML背后的代码:
public async void GetAllNeededLists()
{
ListLineup = await LineUp.GetLineUp();
foreach (var lu in ListLineup)
{
Debug.WriteLine(lu.Date);
}
}
运行时,我使用我的日期获取调试窗口中的所有数据。 我运行应用程序时有一个文本块,但其中没有内容。
答案 0 :(得分:0)
要显示ItemsControl中的项目,您需要使用IEnumerable对象设置ItemsSource属性。
<ListView ItemsSource="{Binding lineups}"/>
将ListLineUp对象设置为ListView上方的DataContext
。
要设置DataTemplate,请使用ItemTemplate
属性。
<ListView.ItemTemplate>
<DataTemplate>...</DataTemplate>
</ListView.ItemTemplate>
答案 1 :(得分:0)
您需要设置ItemsSource
而不是ItemsControl的DataContext:
<ItemsControl ItemTemplate="{StaticResource test}" ItemsSource="{Binding ListLineup}">