Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
459 views

WPF - Auto Line Number for FlowDocument?

I'm just starting on a contract generation routine for my current project and one of the requirements is that each of the lines in the contract must be numbered. The number should be located in the ...
6
votes
2answers
923 views

WPF: FixedDocument in Visual Studio 2008 Designer

It's a well-known bug that Visual Studio shows an error when you try to construct a FixedDocument in XAML. For example, the following snippet <DocumentViewer> <FixedDocument> ...
5
votes
4answers
2k views

iTextSharp to generate PDF from WPF FixedDocument

I have a simple WPF app that displays and prints some reports with a FixedDocument. How can generate PDF's from that, with a free and open solution, such as iTextSharp?
4
votes
2answers
2k views

Why am I losing my databinding when printing to an XpsDocument?

Update! Binding works. The issue is that the XpsDocumentWriter doesn't properly write the first page of the first document of a FixedDocumentSequence. This seems to be an issue encountered by lots ...
2
votes
1answer
361 views

How to show WPF DocumentViewer with Landscape Orientation?

I'm creating a simple (one page of letter size) FixedDocument and showing it on a DocumentViewer for print preview purposes. It is easy to put the content as landscape just applying a rotate ...
2
votes
1answer
292 views

Transform PDF to FixedDocument

My goal is to be able to display PDF documents using DocumentViewer (WPF control). DocumentViewer is able to display only FixedDocumnets. Is there any way to transform PDF to FixedDocument. Thank you ...
2
votes
1answer
671 views

WPF Tables within FixedDocument

I was wondering if it is possible adding a WPF-Table within a FixedDocument/FixedPage. It seems, as if it is not supported by default. Is there some kind of workaround to achieve this?
2
votes
1answer
931 views

WPF 4 FixedDocument multiple pages

What is the best way to print a complex layout spanning multiple pages in WPF? (for example an invoice layout spanning multiple pages because of many invoice items) I'm guessing one of these methods ...
1
vote
0answers
79 views

Disposing of Flowdocument Page after rendering

//Create a User Control with a TextBlock TextBlock textBlock = new TextBlock(); textBlock.Text = "Helo"; UserControl userCOntrol = new UserControl(); ...
1
vote
1answer
199 views

remove page from fixed document?

How can I remove a page from a fixedDocument? I add pages like this: // Add page to pageContent PageContent pageContent = new PageContent(); ((IAddChild)pageContent).AddChild(fixedPage); // Add ...
1
vote
1answer
101 views

Why do I get “The property 'Pages' does not have an accessible setter” for a simple <FixedDocument> in Expression Blend 4?

I have a XAML file which I have pared down to find the cause of this issue to the following minimal case: <FixedDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > ...
1
vote
1answer
359 views

WPF DocumentViewer doesn't show the document

I'm using a DocumentViewer to view a FixedDocument and on 2 machines (out of over 500) the document viewer does not show the document. Edit: ok, it's not a bug in WPF and the DocumentViewer control ...
1
vote
1answer
1k views

WPF FlowDocument Page Break/Positioning

Here's the situation. I'm tasked with auto-generating a rather large document consisting of a number of distinct sections of varying height and constant (full-page) width. Each section consists of ...
0
votes
2answers
44 views

Saving a FixedDocument to an XPS file causes memory leak

I have created a .NET Windows Service which performs certain actions and generates reports. These reports are XPS documents which I save in a certain directory. Being familiar with WPF, the way I ...
0
votes
0answers
48 views

Adding Extension Method 'Remove' to Fixed Documents

This maybe quite similar to remove page from fixed document? but i have a possible solution. public static class Extensions { public static PageContentCollection Remove(PageContent page) { ...
0
votes
0answers
69 views

How can I create a bindable FixedDocument using XAML that can be printed and/or saved to XPS?

I am creating an invoicing program that needs to print out Invoices. There are many different Invoice formats that depend on the user setup, so to accomplish this I need to create templates that can ...
0
votes
1answer
35 views

VisualBrush does “lazy evaluation”?

I create FixedDocument in more iterations (one page per iteration) like this: PrintDialog pr = new PrintDialog(); FixedDocument doc = new FixedDocument(); foreach(var i in a) { // some changes ...
0
votes
1answer
46 views

BitmapSource to UI Element for FixedDocument?

I have the following in a WPF application: Create a stackpanel Create a bitmapsource from the stackpanel Create a FixedDocument So, I'm trying to get from step 2 to step 3. FixedDocuments only ...
0
votes
0answers
31 views

Looking for 3rd Party FixedDocument for Silverlight

I need a FixedDocument for a project I'm working on. I've been searching for days and can't find a Silverlight version of this WPF control. Does anyone know of a 3rd party vendor who has a Silverlight ...
0
votes
2answers
216 views

Show several FixedDocuments in a DocumentViewer, as if they were a single document

In my WPF app, I have several FixedDocument objects, which I want to display together in a DocumentViewer, as if they were a single document. It's easy to display a single FixedDocument in a document ...
0
votes
0answers
357 views

Printing a Fixed Document without displaying it on the screen

I need to recompose several elements into a report page. I currently compose the fixed document, then set the fixed document as the document in a DocumentViewer. While this works sometimes, ...
0
votes
1answer
1k views

WPF FixedDocument pagination

How do I get FixedDocument to automatically paginate? I have the following code that I can use to put prettified Panel into a DocViewer. The problem occurs when the Panel extends past a single page. ...
0
votes
1answer
410 views

WPF Document Viewer Update Issues

After a lenghtly battle implementing document rotation for fixed documents using the documentViewer in WPF I finally manged to get it working with the code below: //Increment Rotation if ...
0
votes
1answer
676 views

How can I use a WPF FlowDocument or FixedDocument to compose a printable page from on screen controls?

I'm attempting to print a number of WPF controls (datagrid, charts etc) that are on screen in my application but which need to be re-arranged and supplemented with other text etc. Using the WPF ...
0
votes
1answer
417 views

C# XPS FixedDocument fails to save, width and height must be non-negative

I am having a problem with a XAML report that needs to be saved to XPS. Whenever the save is called the XPS Writing failed due to, "Height and Width must be non-negative". When I inspect the object, ...
0
votes
1answer
193 views

Viewing Xps document - Compressed part has inconsistent data length

XpsDocument xpsDoc = new XpsDocument(fileName, FileAccess.Read); documentViewer.Document = xpsDoc.GetFixedDocumentSequence(); Second line gives next error: Compressed part has inconsistent data ...
0
votes
1answer
262 views

Blocks to UIElement conversion

Hai is it possible to convert a 'System.Windows.Documents.Block' to 'System.Windows.UIElement' . I need this as i want to add the blocks i created to a fixed document.is there any other way? thanx ...