Improve WPF DataGrid performance

后端 未结 4 2110
遇见更好的自我
遇见更好的自我 2020-11-29 01:23

In my .NET 3.5 WPF Application, I have a WPF DataGrid which will be populated with 500 columns and 50 rows. The performan

4条回答
  •  感情败类
    2020-11-29 01:57

    Check if you have property ScrollViewer.CanContentScroll set False. Setting this property to false disables the virtualization in a way will degrade the performance of your Data-grid. For more clarification refer this CanContentScroll

提交回复
热议问题