WPF Toolkit Datagrid Performance issue in rendering
-
Hi All, I am facing a performance issue with WPF Toolkit datagrid. In my application I have created a view containing multiple Data Grids (around 15) with about 100 rows in each grid. The view shows 15 rows for each grid. The grids are placed in an ListView, so when I scroll in the list view I am experiencing a performance hit. Can anyone guide me to resolve the issue. Thanks
-
Hi All, I am facing a performance issue with WPF Toolkit datagrid. In my application I have created a view containing multiple Data Grids (around 15) with about 100 rows in each grid. The view shows 15 rows for each grid. The grids are placed in an ListView, so when I scroll in the list view I am experiencing a performance hit. Can anyone guide me to resolve the issue. Thanks
I have no idea about the datagrid, but did you Virtualized your ListView? e.g.
<ListView
VirtualizingStackPanel.IsVirtualizing="True"
VirtualizingStackPanel.VirtualizationMode="Recycling"
...
/>QuickZip