Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DataGrid row virtualization display issue

We currently have a DataGrid that is bound to a DataTable. It also has a template column with a CheckBox in it that we add in programatically. This purpose of this column is track multiple selections in the DataGrid.

A factory is used to create the CheckBoxes for each row.

There are quite a few records, so row virtualization is set to true so that the performance is acceptable. However, we're seeing a strange issue where if we check some CheckBoxes on the first 10 rows and then scroll down about 50 rows (the grid has about 10 rows visible at any one time), there are a bunch of other CheckBoxes that appear to be checked at random.

If we disable row virtualization this problem does not exist (but the performance is terrible). Is there any way around this? Anyone know what we may be doing wrong?

like image 434
WPFNewbie Avatar asked Mar 30 '12 19:03

WPFNewbie


1 Answers

If you are looking for speed ListView Gridview is much much faster (and has less features).

Try disable container recycling.

             <tk:DataGrid x:Name="dataGrid"               ItemsSource="{Binding Path=Bookings}"               AutoGenerateColumns="False"               EnableRowVirtualization="True"               EnableColumnVirtualization="True"              VirtualizingStackPanel.VirtualizationMode="Standard"              VirtualizingStackPanel.IsVirtualizing="True"> 
like image 176
paparazzo Avatar answered Nov 09 '22 16:11

paparazzo