Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个固定列和许多其他列的网格。当我在第二页上打印(datagrid.Print())时,我的列不适合第一页但没有固定列(仅打印在第一页上)。我想在我打印的每一页上重复固定列,因为它是数据的关键。这可能吗?
在您的 PrintTableView 中,您可以设置 FixedColumnCount。例如
<xcdg:DataGridControl.PrintView> <xcdg:PrintTableView IsAlternatingRowStyleEnabled="True" FixedColumnCount="1" >...