2016-09-02 15 views
0

FlowDocumentからXpsDocumentへの変換を頻繁に使用するアプリケーションを開発しています。時々例外がスローされます: NotSupportedException: "URIプレフィックスは認識されません。"FlowDocumentからの変換後にXpsDocumentをレンダリングする際の例外

私のシナリオは非常に複雑で、単純なテストに凝縮しました。テキストボックスにいくつかの文字を入力すると(速い)、すぐに例外が発生します。

XAML:背後

<Window x:Class="FlowDocPreview.MainWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> 
    <Grid> 
     <Grid.ColumnDefinitions> 
      <ColumnDefinition /> 
      <ColumnDefinition /> 
     </Grid.ColumnDefinitions> 
     <RichTextBox Name="rtb" KeyUp="rtb_KeyUp" /> 
     <DocumentViewer Grid.Column="1" Name="dv" /> 
    </Grid> 
</Window> 

コード:

using System; 
using System.IO; 
using System.IO.Packaging; 
using System.Windows; 
using System.Windows.Documents; 
using System.Windows.Input; 
using System.Windows.Xps; 
using System.Windows.Xps.Packaging; 


namespace FlowDocPreview 
{ 
    public partial class MainWindow : Window 
    { 
     public MainWindow() 
     { 
      InitializeComponent(); 
      rtb.Document = new FlowDocument(); 
     } 

     Uri _packageUri = null; 

     private void rtb_KeyUp(object sender, KeyEventArgs e) 
     { 
      using (MemoryStream ms = new MemoryStream()) 
      { 
       dv.Document = null; 
       if (_packageUri != null) 
       { 
        PackageStore.RemovePackage(_packageUri); 
       } 

       _packageUri = new Uri("memorystream://" + DateTime.Now.Ticks + ".xps"); 

       TextRange sourceContent = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd); 
       MemoryStream stream = new MemoryStream(); 
       sourceContent.Save(stream, DataFormats.Xaml); 
       FlowDocument flowDocumentCopy = new FlowDocument(); 
       TextRange copyDocumentRange = new TextRange(flowDocumentCopy.ContentStart, flowDocumentCopy.ContentEnd); 
       copyDocumentRange.Load(stream, DataFormats.Xaml); 

       Package package = Package.Open(ms, FileMode.OpenOrCreate, FileAccess.ReadWrite); 
       PackageStore.AddPackage(_packageUri, package); 
       XpsDocument xpsDoc = new XpsDocument(package, CompressionOption.SuperFast); 
       xpsDoc.Uri = _packageUri; 
       XpsDocumentWriter documentWriter = XpsDocument.CreateXpsDocumentWriter(xpsDoc); 
       documentWriter.Write(((IDocumentPaginatorSource)flowDocumentCopy).DocumentPaginator); 

       dv.Document = xpsDoc.GetFixedDocumentSequence(); 
      } 
     } 
    } 
} 

例外(パッケージが正しく、既存しているように見える)catched(https://social.msdn.microsoft.com/Forums/windows/en-US/431e8e80-3bf0-4679-a0c0-9b5cae4f2f38/systemnotsupportexception-the-uri-prefix-is-not-recognized-when-creating-xps-document?forum=netfxbcl参照)、あるいは未然に防止することはできません。私は.netコードを調べて、その奇妙な振る舞いの理由を見つけました。全体では、修正を見つけるために数日か数週間を費やしました。

アイデア?よろしくおねがいします。

+0

高速入力時のみ発生しますか? –

+0

この例でははいです。しかし、それは私が1分に1回それを使用してもまれに起こります。アプリケーションは生産的に使用されており、週に1回エラーが発生します。 – Headi

答えて

0

最後に私は確かな解決策を得ました。問題は、私のWPFアプリケーションが未処理の例外をキャッチしなかったことです。コードでアプリケーションを開始し、xamlファイルでDispatcherUnhandledExceptionハンドラを登録しました。とにかくそれは捕まえられなかった。おそらく、アプリケーションを実行する前にアプリケーションを初期化するいくつかの追加の手順があります。私はDispatcherUnhandledExceptionハンドラをコードに追加しました。私は例外自体を避けることはできませんが、少なくとも私はそれを処理することができます。

よろしくお願いいたします。 Headi

関連する問題