web-dev-qa-db-ja.com

C#での印刷(wpf)

私はC#WPFプログラムを作成しており、私のプログラムは請求書を印刷する必要がありますが、WPFでの印刷の仕組みを見つけるのに苦労しています... winformsでのプログラミングからよく覚えているなら、 GDI +を使用して印刷します。ただし、WPFには当てはまらないと思います。

誰かが役に立つドキュメントや例へのリンクを付けて正しい方向に向けてくれたら幸いです...

22
Sander Declerck

WPFでの印刷は単純であり、それほど単純ではありません。しかし、グーグルで簡単に見つかる紹介記事を参照するには、 here を見てください。

基本的に、すでに印刷している1行または2行のコードから始まります。

private void PrintBtn_Click(object sender, RoutedEventArgs e)
{
    PrintDialog printDialog = new PrintDialog();
    if (printDialog.ShowDialog() == true)
    {
    printDialog.PrintVisual(grid, "My First Print Job");
    }
}

ただし、WPFのページネーションは1行のコードで実行されません。次に、FlowDocumentsおよび同様のより高度なトピックに入ります。

自分用に非商用ツールを作成する場合は、 iTextSharp を検討してください。これも非常に優れています。

24
Jaapjan

コードを使用してフロードキュメントを作成したWPFのdatagridからすべてのレコードを印刷する場合は、ロジックを理解し、独自の要件に従って作成できます。すべてのレコードを含むすべてのデータグリッドを印刷します。簡単でシンプルなコードです。クラスを追加します。
次の手順を実行します。
ステップ1:これらの参照を上に追加します。

 using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;

Step2:クラスPrintDG.csを追加します。

  public  class PrintDG
{
         public void printDG(DataGrid dataGrid, string title)
    {



        PrintDialog printDialog = new PrintDialog();
        if (printDialog.ShowDialog() == true)
        {
            FlowDocument fd = new FlowDocument();

            Paragraph p = new Paragraph(new Run(title));
            p.FontStyle = dataGrid.FontStyle;
            p.FontFamily = dataGrid.FontFamily;
            p.FontSize = 18;
            fd.Blocks.Add(p);

            Table table = new Table();
            TableRowGroup tableRowGroup = new TableRowGroup();
            TableRow r = new TableRow();
            fd.PageWidth = printDialog.PrintableAreaWidth;
            fd.PageHeight = printDialog.PrintableAreaHeight;
            fd.BringIntoView();

            fd.TextAlignment = TextAlignment.Center;
            fd.ColumnWidth = 500;
            table.CellSpacing = 0;

            var headerList = dataGrid.Columns.Select(e => e.Header.ToString()).ToList();


            for (int j = 0; j < headerList.Count; j++)
            {

                r.Cells.Add(new TableCell(new Paragraph(new Run(headerList[j]))));
                r.Cells[j].ColumnSpan = 4;
                r.Cells[j].Padding = new Thickness(4);

                r.Cells[j].BorderBrush = Brushes.Black;
                r.Cells[j].FontWeight = FontWeights.Bold;
                r.Cells[j].Background = Brushes.DarkGray;
                r.Cells[j].Foreground = Brushes.White;
                r.Cells[j].BorderThickness = new Thickness(1, 1, 1, 1);
            }
            tableRowGroup.Rows.Add(r);
            table.RowGroups.Add(tableRowGroup);
            for (int i = 0; i < dataGrid.Items.Count; i++)
            {

                DataRowView row = (DataRowView)dataGrid.Items.GetItemAt(i);

                table.BorderBrush = Brushes.Gray;
                table.BorderThickness = new Thickness(1, 1, 0, 0);
                table.FontStyle = dataGrid.FontStyle;
                table.FontFamily = dataGrid.FontFamily;
                table.FontSize = 13;
                tableRowGroup = new TableRowGroup();
                r = new TableRow();
                for (int j = 0; j < row.Row.ItemArray.Count(); j++)
                {

                    r.Cells.Add(new TableCell(new Paragraph(new Run(row.Row.ItemArray[j].ToString()))));
                    r.Cells[j].ColumnSpan = 4;
                    r.Cells[j].Padding = new Thickness(4);

                    r.Cells[j].BorderBrush = Brushes.DarkGray;
                    r.Cells[j].BorderThickness = new Thickness(0, 0, 1, 1);
                }

                tableRowGroup.Rows.Add(r);
                table.RowGroups.Add(tableRowGroup);

            }
            fd.Blocks.Add(table);

            printDialog.PrintDocument(((IDocumentPaginatorSource)fd).DocumentPaginator, "");

        }
    }

}

Step2:次に、印刷ボタンのクリックイベントに移動してPrintDGクラスのオブジェクトを作成し、printDGパスを呼び出して、2つのパラメーターdatagridnameとtitleを渡します。
お気に入り :

private void print_button_Click(object sender, RoutedEventArgs e)
    {
            PrintDG print = new PrintDG();

 print.printDG(datagridName, "Title");
}

実行中にエラーが発生した場合、それを解決することを教えてください。

2
Muhammad Mehdi

これらのリンクは、印刷がどのように機能し、何を正確に使用するかを理解するのに役立ちます。

http://www.charlespetzold.com/blog/2006/02/201111.html

http://msdn.Microsoft.com/en-us/library/ms742418(v = vs.100).aspx

http://www.switchonthecode.com/tutorials/printing-in-wpf

1
Mamta D