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(int i=0; i< datagridview1.rows.count;i++) { //ここに印刷用のコード }