I would like to keep the grid's header fixed while scrolling. I have tried setting StationaryMargins="Header", but didn't work. This caused all cells of the grid to be merged.
Any suggestions on how to achieve this?
duanbrito said:I have tried setting StationaryMargins="Header", but didn't work.
You also have to have set the grid's DisplayLayout.TableLayout property to "Fixed" for this to work. This is done for you automatically if you set StationaryMargins through the designer; if you did this through code, then you need to set TableLayout through code as well.
duanbrito said:This caused all cells of the grid to be merged.