在我的Windows Phone 7.1应用程序中。我在枢轴控件中有一个列表框。我的列表框使用来自Web服务的OData填充数据。我正在使用http://services.odata.org/Northwind/Northwind.svc/中的服务进行测试。我无法刷新列表框中的数据。例如,当应用程序加载时,应用程序将获取OrderID 10248和10249的数据。现在,如果用户按下应用程序栏中的按钮,我想获取OrderID 10250和10251的记录。当我进行调用以获取数据时,我没有从应用程序中获得任何错误,并且UI中的数据不会刷新。我从阅读中了解到,DataServiceCollection实现了ObservableCollection,它本身实现了INotifyPropertChanged,所以我的UI应该只在集合发生变化时刷新。但事实并非如此。
我已经在使用GridView的WPF应用程序中对此进行了测试,并且UI可以使用新数据进行更新。我知道虽然WPF中的调用不是异步的。任何帮助表示赞赏。
以下是我在ViewModel中用于获取数据的代码。
private NorthwindEntities context;
private const string svcUri = "http://services.odata.org/Northwind/Northwind.svc/";
public MainViewModel()
{
List<string> nums = new List<string>() { "10248", "10249" };
GetDataFromService(nums);
}
public void GetDataFromService(List<string> zNumbers)
{
try
{
string partQuery = "Orders()?$filter =";
if (zNumbers.Count > 0)
{
foreach (var item in zNumbers)
{
partQuery += "(OrderID eq " + item + ") or ";
}
partQuery = partQuery.Substring(0, partQuery.Length - 3).Trim();
}
// Initialize the context for the data service.
context = new NorthwindEntities(new Uri(svcUri));
Uri queryUri = new Uri(partQuery, UriKind.Relative);
trackedCustomers = new DataServiceCollection<Order>(context);
trackedCustomers.LoadAsync(queryUri);
}
catch (DataServiceQueryException ex)
{
MessageBox.Show("The query could not be completed:\n" + ex.ToString());
}
catch (InvalidOperationException ex)
{
MessageBox.Show("The following error occurred:\n" + ex.ToString());
}
}
private DataServiceCollection<Order> trackedCustomers;
public DataServiceCollection<Order> TrackedCustomers
{
get { return trackedCustomers; }
set
{
if (value != trackedCustomers)
{
trackedCustomers = value;
NotifyPropertyChanged("TrackedCustomers");
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (null != handler)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
这是我的MainPage.xaml中的XAML
<Grid x:Name="LayoutRoot" Background="Transparent">
<!--Pivot Control-->
<controls:Pivot Title="MY APPLICATION">
<!--Pivot item one-->
<controls:PivotItem Header="first">
<!--Double line list with text wrapping-->
<ListBox x:Name="FirstListBox" Margin="0,0,-12,0" ItemsSource="{Binding TrackedCustomers, Mode=OneWay}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,0,0,17" Width="432" Height="78">
<TextBlock Text="{Binding OrderID}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
<TextBlock Text="{Binding Freight}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PivotItem>
</controls:Pivot>
</Grid>
答案 0 :(得分:0)
在LoadAsync完成后是否有一个处理程序被调用?如果是这样,那就是你需要对公共财产TrackedCustomers进行分配。
或者,可能会更改这些行以使用公共属性:
trackedCustomers = new DataServiceCollection<Order>(context);
trackedCustomers.LoadAsync(queryUri);
答案 1 :(得分:0)
问题是您正在将后端集合trackedCustomers
更改为新对象,而不会告诉UI它正在更改。 UI被绑定到对象的第一个实例,并且您正在抛弃该对象。你需要做两件事之一
清除支持集合:
trackedCustomers.Clear();
trackedCustomers.LoadAsync(queryUri);
或使用公开的属性
TrackedCustomers= new DataServiceCollection<Order>(context);
TrackedCustomers.LoadAsync(queryUri);