簡體   English   中英

在WPF中每張紙上打印具有多個FixedPage的FixedDocument

[英]Print FixedDocument with multiple FixedPage in pages per sheet in WPF

我有一個非常簡單的WPF應用程序,上面只有一個按鈕。

<Button x:Name="btnPrintCard" Grid.Row="2" HorizontalAlignment="Center" Content="Print Card" MinWidth="140" Foreground="White"
                Cursor="Hand" Background="#008080" Click="btnPrintCard_Click" />

我正在嘗試在“典型A4”頁面上打印多張尺寸為3.370 x 2.125的卡片。 如果布置正確,則從左到右的順序應該每張可容納10張卡片。 就像adobe reader的打印命令一樣,並將每張紙的自定義頁面設置為2 x 5。

Abode Reader打印設置

我正在使用以下代碼生成和打印卡:

private void btnPrintCard_Click(object sender, RoutedEventArgs e)
{
    try
    {
        PrintDialog printDialog = new PrintDialog();
        bool? pdResult = printDialog.ShowDialog();
        if (pdResult != null && pdResult.Value)
        {
            FixedDocument document = CreateFixedDocument();
            printDialog.PrintDocument(document.DocumentPaginator, "ID Card Printing");
        }
        MessageBox.Show("Printing done.");
    }
    catch (Exception ex)
    {
        Debug.WriteLine(ex.Message + " :: " + ex.InnerException);
    }
}

private FixedDocument CreateFixedDocument()
{
    FixedDocument fixedDocument = new FixedDocument();
    // fixedDocument.DocumentPaginator.PageSize = new Size(96 * 3.370, 96 *2.125);
    fixedDocument.DocumentPaginator.PageSize = new Size(96 * 8.5, 96 * 11);

    for (int i = 0; i < 10; i++)
    {
        PageContent page = new PageContent();
        FixedPage fixedPage = CreateOneFixedPage();
        ((IAddChild)page).AddChild(fixedPage);
        fixedDocument.Pages.Add(page);
    }
    return fixedDocument;
}

private FixedPage CreateOneFixedPage()
{
    FixedPage page = new FixedPage();
    page.Background = Brushes.Red;
    page.Width = 96 * 3.370;
    page.Height = 96 * 2.125;

    TextBlock tbTitle = new TextBlock();
    tbTitle.Text = "xxx xxxxx Public School";
    tbTitle.FontSize = 24;
    tbTitle.Foreground = new SolidColorBrush(Colors.White);
    tbTitle.FontFamily = new FontFamily("Arial");
    FixedPage.SetLeft(tbTitle, 96 * 0.4); // left margin
    FixedPage.SetTop(tbTitle, 96 * 0.04); // top margin
    page.Children.Add((UIElement)tbTitle);

    Image image = new Image
    {
        Source = new BitmapImage(new Uri("http://www.ready-range.co.uk/_assets/images/products/BHSRR40R0R.jpg")),
        Height = 30,
        Width = 30
    };

    Border b = new Border();
    b.BorderThickness = new Thickness(1);
    b.BorderBrush = Brushes.Yellow;
    b.Child = image;

    FixedPage.SetLeft(b, 96 * 0.3);
    FixedPage.SetTop(b, 96 * 0.6); // top margin
    page.Children.Add((UIElement)b);

    //measure size of the layout
    Size sz = new Size(96 * 3.370, 96 * 2.125);
    page.Measure(sz);
    page.Arrange(new Rect(new Point(), sz));
    page.UpdateLayout();

    return page;
}

這樣可以成功打印,但是每頁每張卡都這樣打印:

打印的圖像

問題是我想像上面的第一張圖像一樣打印,即每張紙自定義2 x 5。

非常感謝。

另一個stackoverflow問題的答案很有幫助。 為了獲得期望的結果,我進行了一些更改,這是在WpfPrint類中添加了自己的方法。

/// <summary>
/// Add fixed page to current fixed document
/// </summary>
/// <param name="card"></param>
/// <param name="flags"></param>
public void AddFixedPage(FixedPage card, ElementFlags flags)
{
    card.Measure(_infiniteSize);
    if (CurX > _fixedDocument.DocumentPaginator.PageSize.Width - MarginX)
    {
        CurY += card.DesiredSize.Height + MarginY;
        CurX = MarginX;
    }
    double extraCheck = 0;
    if ((flags & ElementFlags.BottomCheck2) == ElementFlags.BottomCheck2)
        extraCheck = card.DesiredSize.Height;
    if (CurY > _fixedDocument.DocumentPaginator.PageSize.Height - MarginY - extraCheck)
        StartPage();


    _curCanvas.Children.Add(card);
    card.SetValue(Canvas.LeftProperty, CurX);
    card.SetValue(Canvas.TopProperty, CurY);


    CurX += card.DesiredSize.Width + MarginX; //Added margin x for proper display             

    if (((flags & ElementFlags.NewLine) == ElementFlags.NewLine)  || CurX + card.DesiredSize.Width > _fixedDocument.DocumentPaginator.PageSize.Width) 
    {
        CurX = MarginX;
        CurY += card.DesiredSize.Height + MarginY;
    }
}

現在,我們可以像這樣簡單地做到這一點:

WpfPrint printer = new WpfPrint(new Size(96 * 9, 96 * 11));
printer.CurrentElementMargin = new Thickness(4);
printer.CurrentFontFamily = new FontFamily("Arial");
printer.MarginX = 20;
printer.MarginY = 10;

現在我們可以遍歷每個FixedPage:

 for (int i = 0; i < 10; i++)
    printer.AddFixedPage(CreateOneFixedPage(), WpfPrint.ElementFlags.BottomCheck2);

最后,發送打印命令,如下所示:

PrintDialog printDialog = new PrintDialog();
bool? pdResult = printDialog.ShowDialog();
if (pdResult != null && pdResult.Value)                              
    printDialog.PrintDocument(printer.CurrentFixedDocument.DocumentPaginator, "Card Printing");

謝謝。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM