views:

161

answers:

0

I would like to display data in a way where the entire set of columns is replicated to the right when there are more items to display than would fit into the height of the grid. This would be instead of scrolling down, space to the right is used to display additional rows.

For example: The table below has 3 columns but wraps at item #6 and continues to the right with item 7-12

Column 1    Column 2    Column 3    |    Column 1    Column 2    Column 3
1           X           Y           |    7           X           Y
2           X           Y           |    8           X           Y
3           X           Y           |    9           X           Y
4           X           Y           |    10          X           Y
5           X           Y           |    11          X           Y
6           X           Y           |    12          X           Y

Does anyone know a DataGrid for WPF that is capable of doing this? So far my application uses the Xceed DataGrid but they told me in their forum that their grid does not support such behavior.