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.
1 つの固定列と他の多くの列を持つグリッドがあります。2 ページ目に印刷 (datagrid.Print()) を実行すると、最初のページには収まらない列がありますが、固定列はありません (最初のページにのみ印刷されます)。データのキーであるため、印刷するすべてのページで固定列を繰り返したいと思います。これは可能ですか?
PrintTableView で、FixedColumnCount を設定できます。例えば
<xcdg:DataGridControl.PrintView> <xcdg:PrintTableView IsAlternatingRowStyleEnabled="True" FixedColumnCount="1" >...