當前位置: 首頁>>代碼示例>>C#>>正文


C# AnnotationDocumentPaginator類代碼示例

本文整理匯總了C#中System.Windows.Annotations.AnnotationDocumentPaginator的典型用法代碼示例。如果您正苦於以下問題:C# AnnotationDocumentPaginator類的具體用法?C# AnnotationDocumentPaginator怎麽用?C# AnnotationDocumentPaginator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


AnnotationDocumentPaginator類屬於System.Windows.Annotations命名空間,在下文中一共展示了AnnotationDocumentPaginator類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PrintDialog

PrintDialog prntDialog = new PrintDialog();
if ((bool)prntDialog.ShowDialog())
{
    // XpsDocumentWriter.Write() may change the current
    // directory to "My Documents" or another user selected
    // directory for storing the print document.  Save the
    // current directory and restore it after calling Write().
    string docDir = Directory.GetCurrentDirectory();

    // Create and XpsDocumentWriter for the selected printer.
    XpsDocumentWriter xdw = PrintQueue.CreateXpsDocumentWriter(
                                        prntDialog.PrintQueue);

    // Print the document with annotations.
    try
    {
        xdw.Write(_annotHelper.GetAnnotationDocumentPaginator(
            _xpsDocument.GetFixedDocumentSequence()));
    }
    catch (PrintingCanceledException)
    {
        // If in the PrintDialog the user chooses a file-based
        // output, such as the "MS Office Document Image Writer",
        // the user confirms or specifies the actual output
        // filename when the xdw.write operation executes.
        // If the user clicks "Cancel" in the filename
        // dialog a PrintingCanceledException is thrown
        // which we catch here and ignore.
        // MessageBox.Show("Print output cancelled");
    }

    // Restore the original document directory to "current".
    Directory.SetCurrentDirectory(docDir);
}
開發者ID:.NET開發者,項目名稱:System.Windows.Annotations,代碼行數:34,代碼來源:AnnotationDocumentPaginator

示例2: GetAnnotationDocumentPaginator

// ------------------ GetAnnotationDocumentPaginator ------------------
/// <summary>
///   Returns a paginator for printing annotations.</summary>
/// <param name="fds">
///   The FixedDocumentSequence containing
///   the annotations to print.</param>
/// <returns>
///   An paginator for printing the document's annotations.</returns>
public AnnotationDocumentPaginator GetAnnotationDocumentPaginator(
                                            FixedDocumentSequence fds)
{
    return new AnnotationDocumentPaginator(
                   fds.DocumentPaginator, _annotService.Store);
}
開發者ID:.NET開發者,項目名稱:System.Windows.Annotations,代碼行數:14,代碼來源:AnnotationDocumentPaginator


注:本文中的System.Windows.Annotations.AnnotationDocumentPaginator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。