本文整理汇总了C#中System.Windows.Documents.IDocumentPaginatorSource接口的典型用法代码示例。如果您正苦于以下问题:C# IDocumentPaginatorSource接口的具体用法?C# IDocumentPaginatorSource怎么用?C# IDocumentPaginatorSource使用的例子?那么恭喜您, 这里精选的接口代码示例或许可以为您提供帮助。
IDocumentPaginatorSource接口属于System.Windows.Documents命名空间,在下文中一共展示了IDocumentPaginatorSource接口的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadDocumentViewer
// ------------------------- LoadDocumentViewer -----------------------
/// <summary>
/// Loads content from a file to a DocumentViewer control.</summary>
/// <param name="xpsFilename">
/// The path and name of the XPS file to
/// load to the DocumentViewer control.</param>
/// <remarks>
/// Exception handling should be added if the xpsFilename may not be
/// valid or if the FixedDocumentSequence contained in the file is
/// incorrect. (In this sample the files are hardcoded.)</remarks>
private void LoadDocumentViewer(string xpsFilename)
{
// Save a reference to the currently open XPS package.
XpsDocument oldXpsPackage = _xpsPackage;
// Open the package for the new XPS document.
_xpsPackage = new XpsDocument(xpsFilename,
FileAccess.Read, CompressionOption.NotCompressed);
// Get the FixedDocumentSequence from the package.
FixedDocumentSequence fixedDocumentSequence =
_xpsPackage.GetFixedDocumentSequence();
// Set the new FixedDocumentSequence as
// the DocumentViewer's paginator source.
docViewer.Document =
fixedDocumentSequence as IDocumentPaginatorSource;
// If there was an old XPS package, close it now that
// DocumentViewer no longer needs to access it.
if (oldXpsPackage != null)
oldXpsPackage.Close();
// Leave the new _xpsPackage open for DocumentViewer
// to access additional required resources.
}// end:LoadDocumentViewer()