WPF 数据网格列虚拟化

本文关键字:虚拟化 网格 数据网 数据 WPF | 更新日期: 2023-09-27 18:37:10

>我正在尝试在我的DataGrid上执行水平虚拟化。我的收藏类型为:

   List<string[]>

它的第一维长度是 64,第二维大约是 5000

我一直在使用Paul McClean的VirtualCollection来实现垂直虚拟化。

我的 IItemsProvider 封装了一个迭代器,它返回 string[] 的项目,它代表我表中的一行。

我的项目提供者 :

public class ArrayItemProvider<I,T> :IArrayItemProvider, IItemsProvider<T[]> where I : IList<T>
{      
    public int FetchCount()
    {
        return 64;
    }
    public IList<T[]> FetchRange(int startIndex, int count)
    {
        return _iterator.Skip(startIndex).Take(count).ToList();
    }
}  

迭代器:

 public class ArrayItemIterator<I, T> : IArrayItemIterator<T> where I : IList<T>
 {             
    public IEnumerator<T[]> GetEnumerator()
    {
        for (int i = 0; i < _arrayItemLength; i++)
        {
            T[] arr = new T[_extent];
            for (int j = 0; j < _extent; j++)
            {
                arr[j] = _items[j][i];
            }
            yield return arr;
        }
    }
    public int Extent 
    {
        get { return _extent; }
    }
    public void UpdateExtent(int extent)
    {
        _extent = extent;
    }
}

}

总结以上内容,我通过 VirtualCollection 收到特定范围的字符串 [] 项目。

我现在正在尝试的是虚拟化列,我的列是在运行时由给定的范围生成的,这是在附加属性的回调中完成的,在静态类中 DataGridBuilderUtil

.cs:

   for (int i = 0; i < _iterator.Extent; i++)
   {
        _dataGrid.Columns.Add(CreateColumn(i));
   }
   private static DataGridColumn CreateColumn(int i)
   {
       var column = new DataGridTextColumn();
       column.Header = "View - " + (i + 1);
       column.Binding = new Binding("[" + i + "]");
       return column;
   }

在DataGridBuilderUtil中,我还附加了DataGrid的ScrollViewer ScrollChanged事件,更改水平范围时:

1)我添加了一个新列。

2)我更新迭代器范围以容纳另一列。

3)我垂直重新滚动到同一位置,这使我的项目源(虚拟收藏) 它派生自 IList 以查询它的索引并再次请求当前页面(在我的标志的帮助下) IsDefferedLoadPageRequired )

  private static void OnScrollChanged(object sender, ScrollChangedEventArgs e)
  {
      if(e.HorizontalChange > 0.0)
      {                
          // add column  (1)
         _dataGrid.Columns.Add(CreateColumn(_dataGrid.Columns.Count));              
          // Update the Extent  (2)
          _iterator.UpdateExtent(_dataGrid.Columns.Count);              
          // Makes the VirtualCollection request the current page again. (3)
          _collection.IsDefferedLoadPageRequired = true;                            
          _scrollViewer.ScrollToVerticalOffset(_scrollViewer.VerticalOffset);
       }
  }

所以现在在虚拟收藏馆内

    public T this[int index]
    {
        get
        {
            ....
            int pageIndex = index / PageSize;
            RequestPage(pageIndex);                
            ....
        }             
     }

它查询项目提供者:

    public IList<T[]> FetchRange(int startIndex, int count)
    {
        return _iterator.Skip(startIndex).Take(count).ToList();
    }

它查询迭代器,请记住我们的范围是递增的,以容纳另一列。

    public IEnumerator<T[]> GetEnumerator()
    {
        for (int i = 0; i < _arrayItemLength; i++)
        {
            T[] arr = new T[_extent];
            for (int j = 0; j < _extent; j++)
            {
                arr[j] = _items[j][i];
            }
            yield return arr;
        }
    }

所以现在我有一个字符串[]项目,它是递增的字符串[20]项目现在是字符串[21]我的水平数据虚拟化奏效了。

问题是我的单元格以这种方式绑定:(来自上面的创建列方法)

 column.Binding = new Binding("[" + i + "]");

在新列中的每个单元格中都有一个绑定错误(加载集合时生成的原始列中的绑定工作正常:

      System.Windows.Data Error: 17 : Cannot get 'Item[]' value (type 'String') from '' (type 'String[]').     BindingExpression:Path=[20]; DataItem='String[]' (HashCode=32127640); 
      target element is 'TextBlock' (Name=''); target property is 'Text' (type 'String')      ArgumentOutOfRangeException:'System.ArgumentOutOfRangeException: Specified argument was out of the range of  valid values. 
      Parameter name: index'

我认为这与以下事实有关:当我的列创建该行的数组项时不包含该索引,或者我也尝试在数组更新后创建列。

结果是一样的。

这里最大的问题是,为什么绑定不起作用,以及如何刷新绑定?

此外,我设置 DataGrid.EnableColumnVirtualization = True 以将所有这些组合在一起(如果绑定有效)。

编辑:

Iv'e 还尝试在集合更新后创建列:

     _collection.LoadCompletedEvent += OnLoadCompleted; // VirualCollection event after page is loaded. 
    private static void OnLoadCompleted(object sender, EventArgs e)
    {
        _dataGrid.Columns.Add(CreateColumn(_dataGrid.Columns.Count));
    }
    private static void OnScrollChanged(object sender, ScrollChangedEventArgs e)
    {
        if(e.HorizontalChange > 0.0)
        {                
            // Update the Extent
            _iterator.UpdateExtent(_dataGrid.Columns.Count+1);
            // Makes the VirtualCollection request the current page again.
            _collection.IsLoadPageRequired = true;                            
            _scrollViewer.ScrollToVerticalOffset(_scrollViewer.VerticalOffset);
        }
    }

OnLoadComplete 在 VirtualCollection 重新加载当前页面后引发。

WPF 数据网格列虚拟化

知道该错误是总是被抛出还是仅在您开始滚动时抛出会很有趣。然后,绑定可能会要求尚未可用的索引,因为您尚未在 VirtualCollection 中实现它。

虽然老实说,我有一种感觉,你在索引器中使用了错误的绑定路径语法。

看看这些链接:

http://msdn.microsoft.com/en-us/library/ms742451.aspx

http://msdn.microsoft.com/en-us/library/system.windows.data.binding.path.aspx

例如:

<Binding Path="[key]" .../>

key 必须是字典或哈希表的类型化索引,或者是数组的整数索引。此外,键的值必须是可直接绑定到应用它的属性的类型。例如,包含字符串键和字符串值的哈希表可以通过这种方式绑定到 TextBox 的文本。

这意味着,如果索引器的类型为整数,则 XAML 中将需要类似的东西。

<Binding Path="[(sys:Int32)42,(sys:Int32)24]"... />

我不确定为什么要手动创建绑定。你可以在 xaml 中做到这一点,你吗?:)