你可以在Silverlight DataGrid中使用带有PagedCollectionView的ScrollIntoView()吗?

时间:2010-01-30 23:39:33

标签: silverlight datagridview datagrid

是否可以滚动到具有DataGrid ItemsSource的Silverlight PagedCollectionView中的特定行(按对象标识)。

我正在加载按日/状态等分组的订单列表。我需要能够滚动到特定订单。

 var pcv = new PagedCollectionView(e.Result.Orders);
 gridOrders.ItemsSource = pcv;

很遗憾,由于ScrollIntoView(order)PagedCollectionView无效。

An article on DataGrid from MSDN表示可以滚动到PagedCollectionView中的某个组,但这并没有太多用处。

  foreach (CollectionViewGroup group in pcv.Groups)
  {
       dataGrid1.ScrollIntoView(group, null);
       dataGrid1.CollapseRowGroup(group, true);
  }

有办法做到这一点吗?

1 个答案:

答案 0 :(得分:7)

是的,当项目来源为PagedCollectionView时,可以将项目滚动到视图中。我使用您描述的组滚动方法,并将当前选定的项目滚动到视图中。为此,我有一个帮助方法,它使用调度程序来调用操作,如下所示:

private void ScrollCurrentSelectionIntoView()
{
    this.dataGrid.Dispatcher.BeginInvoke(() =>
    {
        this.dataGrid.ScrollIntoView(
            this.dataGrid.SelectedItem,
            this.dataGrid.CurrentColumn);
    });
}

我使用BeginInvoke因为否则,直接从事件处理程序调用时对ScrollIntoView的调用将失败(可能是因为DataGrid没有正确更新其事件的状态处理)。此方法可确保在调用滚动之前正确完成当前事件处理。