我有一份WCF呼吁归还一份物体清单。
我发明了WP7银星号申请,并修改了主文Model,以装载我WCF服务的数据,现在,LoadData方法就是这样。
public ObservableCollection<Standing> Items { get; private set; }
public void LoadData()
{
var c = new WS.WSClient();
c.GetStandingsCompleted += GetStandingsCompleted;
c.GetStandingsAsync();
}
void GetStandingsCompleted(object sender, GetStandingsCompletedEventArgs e)
{
Items = e.Result;
this.IsDataLoaded = true;
}
如果我对已完成的活动提出突破点,我可以看到它成功,我的物品收集现在有50个奇题。 但是,国际不动产公司清单箱显示了这一点。
如果我把以下一线添加到我的LoadData方法的底线,那么,我看一看一个项目出现在ID的名单上。
Items.Add(new Standing(){Team="Test"});
这证明这些约束是正确的,但似乎由于阿森吉克妇女论坛的拖延,所以“国际倡议”没有更新。
参考I 更新了主Page.xaml清单箱,以约束小组在我的常备物体上的财产。
<ListBox x:Name="FirstListBox" Margin="0,0,-12,0" ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,0,0,17" Width="432">
<TextBlock Text="{Binding Team}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
<TextBlock Text="{Binding Team}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
任何关于我做什么错误的想法?
增 编