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.
如何打印列表视图的多条记录?该PrintVisual方法仅打印特定尺寸或视图(您一次站立的位置)的图像。
PrintVisual
您能否就如何使用PrintVisual或任何其他方法打印多条记录给我一些建议?
我是新手WPF,所以如果有人知道如何解决这个问题,请简要解释一下?(我的列表视图绑定到另一个控件)
WPF
使用 for 循环
例如:for(int i=0; i< datagridview1.rows.count;i++) { //此处打印代码 }