Xceed WPF Datagrid 在每页上打印固定列

发布于 2024-08-17 07:02:12 字数 117 浏览 10 评论 0原文

我有一个带有一个固定列和许多其他列的网格。当我在第二页上进行打印(datagrid.Print())时,我的列不适合第一页,但没有固定列(仅打印在第一页上)。我想在打印的每一页上重复固定列,因为它是数据的关键。这可能吗?

I have a grid with one fixed column and many other columns. When i do a print (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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半暖夏伤 2024-08-24 07:02:12

在 PrintTableView 中,您可以设置 FixColumnCount。例如

            <xcdg:DataGridControl.PrintView>
            <xcdg:PrintTableView
                          IsAlternatingRowStyleEnabled="True"
                          FixedColumnCount="1" >...

In your PrintTableView you can set the FixedColumnCount. e.g

            <xcdg:DataGridControl.PrintView>
            <xcdg:PrintTableView
                          IsAlternatingRowStyleEnabled="True"
                          FixedColumnCount="1" >...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文