Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 1.22 KB

File metadata and controls

16 lines (8 loc) · 1.22 KB

WPF DataGrid - Scrolling performance with more number of rows and columns

By default, datagrid loads textblock as cell content and re-uses the same during scroll operations. Compare to loading textblock drawing the text will enhance the performance. You can change the rendering mode of datagrid to drawing by setting UseDrawing as Default to improve loading and also scrolling performance. To learn more about changing the rendering more read improving loading and scrolling performance using light weight templates.

Reference

WPF DataGrid Performance

WPF DataGrid

More examples

WPF DataGrid - Working with large numbers of records

WPF DataGrid Performance - Asynchronous scrolling example