Hi,
From what I can see,
1) using a Tableview with
2) Using a TableView without the preceding style : the loading is fast, but the scrolling is deferred.
3) Using a TableView without the preceding style and setting DataGrid.ItemScrollingBehavior = Immediate : the loading is fast, and the scrolling is smooth.
4) Using a TableflowView instead of a TableView (and removing the preceding style) will load the sample fast ans has a smooth scrolling.
From what I can see,
1) using a Tableview with
<Style TargetType="{x:Type xcdg:TableViewScrollViewer}">
<Setter Property="CanContentScroll"
Value="false" />
will take more time to load, but scrolling is smooth. 2) Using a TableView without the preceding style : the loading is fast, but the scrolling is deferred.
3) Using a TableView without the preceding style and setting DataGrid.ItemScrollingBehavior = Immediate : the loading is fast, and the scrolling is smooth.
4) Using a TableflowView instead of a TableView (and removing the preceding style) will load the sample fast ans has a smooth scrolling.