I have a grid with one fixed column and many other columns. When i do a print开发者_如何学Go (datagrid.Print()) on the second page i have the columns that would not fit onto the first page but without the fixed column (which is only printed on the first). I would like to repeat the fixed column on every page i print as it is the key to the data. Is this possible?
In your PrintTableView you can set the FixedColumnCount. e.g
<xcdg:DataGridControl.PrintView>
<xcdg:PrintTableView
IsAlternatingRowStyleEnabled="True"
FixedColumnCount="1" >...
精彩评论