这有效
FixedDocumentSeqeunce fixedDocumentSeqeunce = XPSdoc.GetFixedDocumentSeqeunce();
DocumentPaginator paginator = fixedDocumentSeqeunce.DocumentPaginator;
printDialog.PrintDocument(paginator, "Title");
此操作失败
AnnotationDocumentPaginator adp = new AnnotationDocumentPaginator(paginator, service.Store);
// same paginator as above
printDialog.PrintDocument(adp, "Title");
printDialog.PrintDocument(adp, "Title"); 是什么杀死了它
不知何故,它似乎正在损坏XPSdoc
商店似乎很好 - 我可以得到注释
的数量即使我创建零注释
也会失败但是打印本身不会失败 - 我得到了有效的打印
尝试捕获上述内容不会捕获错误
打印几秒钟后出现错误,以
(我有一个处理未处理的异常的处理程序)
指定的视觉对象不是视觉对象的祖先
应用程序崩溃,XPS 文档永远不会在文档查看器中重新绘制
我能够使用滚动查看器获得流文档以打印
注释并以相同的方式创建商店,所以我认为代码很好
.NET 4.5
不知道我的大程序发生了什么,但我现在无法在较小的程序上重现它
弄清楚
了在失败的代码中,我没有使用
FixedDocumentSeqeunce fixedDocumentSeqeunce = XPSdoc.GetFixedDocumentSeqeunce();
在printDialog.PrintDocument中,我使用了与控件绑定到的完全相同的fixedDocumentSeqeunce 。 打印必须更改 fixedDocumentSeqeunce ,因此它需要一个新的 fixedDocumentSeqeunce。
<Window x:Class="APSannotate.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ann="clr-namespace:System.Windows.Annotations;assembly=PresentationFramework"
Loaded="Window_Loaded"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="0" Click="click" Content="Print"/>
<Button Grid.Row="0" Grid.Column="1" Content="Sticky" Width="50" HorizontalAlignment="Left"
Command="ann:AnnotationService.CreateTextStickyNoteCommand"
CommandTarget="{Binding ElementName=docViewer}"/>
<DocumentViewer Grid.Row="1" Grid.ColumnSpan="2" Document="{Binding Path=FixedDocSeq}" Name="docViewer"/>
</Grid>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Xps;
using System.Windows.Annotations;
using System.IO;
using System.Xml;
namespace APSannotate
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
AnnotationService _annotService;
//FileStream _annotStream;
System.Windows.Annotations.Storage.XmlStreamStore _annotStore;
System.Windows.Xps.Packaging.XpsDocument xpsDoc;
//MemoryStream _streamAnnoMem;
public MainWindow()
{
this.DataContext = this;
xpsDoc = new System.Windows.Xps.Packaging.XpsDocument(@"c:tempann.xps", System.IO.FileAccess.Read);
InitializeComponent();
}
public FixedDocumentSequence FixedDocSeq
{
get { return xpsDoc.GetFixedDocumentSequence(); }
}
private void click(object sender, RoutedEventArgs e)
{
PrintDialog printDialog = new PrintDialog();
bool? result = printDialog.ShowDialog();
if (result != null && result.Value)
{
DocumentPaginator documentPaginator = FixedDocSeq.DocumentPaginator;
printDialog.PrintDocument(documentPaginator, "documentPaginator");
AnnotationService service = AnnotationService.GetService(docViewer);
AnnotationDocumentPaginator annotationDocumentPaginator = new AnnotationDocumentPaginator(documentPaginator, service.Store);
printDialog.PrintDocument(annotationDocumentPaginator, "annotationDocumentPaginator");
}
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
StartAnnotations();
}
private void StartAnnotations()
{
// If there is no AnnotationService yet, create one.
if (_annotService == null)
// docViewer is a document viewing control named in Window1.xaml.
_annotService = new AnnotationService(docViewer);
// If the AnnotationService is currently enabled, disable it.
if (_annotService.IsEnabled == true)
_annotService.Disable();
// Open a stream to the file for storing annotations.
//_annotStream = new FileStream(@"c:tempannoStore", FileMode.OpenOrCreate, FileAccess.ReadWrite);
// Create an AnnotationStore using the file stream.
//_annotStore = new System.Windows.Annotations.Storage.XmlStreamStore(_annotStream);
MemoryStream _streamAnnoMem = new MemoryStream();
_annotStore = new System.Windows.Annotations.Storage.XmlStreamStore(_streamAnnoMem);
// Enable the AnnotationService using the new store.
_annotService.Enable(_annotStore);
}// end:StartAnnotations()
}
}