WPF Datagrid Performance

后端 未结 6 1627
忘掉有多难
忘掉有多难 2020-12-02 11:12

I am working with the WPF Toolkit data grid and it is scrolling extremely slow at the moment. The grid has 84 columns and 805 rows. (Including 3 fixed columns and the heade

6条回答
  •  失恋的感觉
    2020-12-02 12:04

    I had a case where my underlying object had property with setter only. The same property was accessible by implementing ITypedList in the collection and via TypeDescriptionProvider/ICustomTypeDescriptor on the individual objects. Either removing the property or adding a getter resolved the performance issues.

提交回复
热议问题