Tagged Questions
The xps tag has no wiki summary.
13
votes
2answers
15k views
Convert WPF (XAML) Control to XPS Document
Can I take an Existing WPF (XAML) Control, databind it and turn it into an XPS document that can be displayed and printed using the WPF XPS Document Viewer?
If so, how?
If not, how should I be doing ...
11
votes
5answers
1k views
What's the point of XPS?
When I read books about WPF, I saw the authors mention XPS like it was something important. Windows also includes its XPS viewer, and I've seen that listed as a "feature" of Windows.
But why? What's ...
6
votes
8answers
2k views
How to generate and print large XPS documents in WPF?
I would like to generate (and then print or save) big XPS documents (>400 pages) from my WPF application. We have some large amount of in-memory data that needs to be written to XPS.
How can this ...
6
votes
4answers
9k views
Best ways to convert XPS to PDF (and vice-versa)?
I have XPS documents being generated from XAML User Controls that act as templates. I want to convert the XPS documents into alternative formats, mainly PDF, programmatically with a .NET based API.
...
6
votes
5answers
15k views
How to create an XPS document?
I'd like to create an XPS document for storing and printing.
What is the easiest way to create an XPS document (for example with a simple grid with some data inside) in my program, and to pass it ...
6
votes
6answers
4k views
WPF DocumentViewer doesn't release the XPS file
I am working on a WPF application that opens and displays XPS documents. When the application closes, the specification is the application should delete the opened XPS document for clean up. However, ...
6
votes
7answers
11k views
Dot Matrix printing in C#?
I'm trying to print to Dot Matrix printers (various models) out of C#, currently I'm using Win32 API (you can find alot of examples online) calls to send escape codes directly to the printer out of my ...
5
votes
1answer
664 views
how convert xps file to image. high quality?
I'm trying to convert an XPS with WPF.
The idea is that these images can be loaded with silverlight 4, for this I am using the following code:
// XPS Document
XpsDocument xpsDoc = new ...
4
votes
3answers
580 views
Using CMYK colours in WPF/XAML
Is there any way to specify CMYK colours directly in a XAML document?
prefixing them with # character will create RGB colours, but how to specify a CMYK colour?
Some notes:
The question is NOT ...
4
votes
1answer
123 views
How can I use WPF bindings while printing?
It seems not all bindings are to evaluated when printing. For example, in the code below, only the first button has content = "100", other buttons have content = "0".
var doc = new ...
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 ...
4
votes
5answers
2k views
Opening XPS document in .Net causes a memory leak
The following code snippet illustrates a memory leak when opening XPS files. If you run it and watch the task manager, it will grow and not release memory until the app exits.
'** Console application ...
4
votes
2answers
4k views
WPF DocumentViewer Find-function and FixedPage documents
.Net contains a nice control called DocumentViewer. it also offers a subcontrol for finding text in the loaded document (that's at least what it is supposed to do).
When inserting FixedPage's objects ...
3
votes
1answer
227 views
How to get GhostPDL progress notifications while converting XPS to PDF?
As of now, I'm using Process to call GhostPDL to convert my XPS files into PDF files.
The problem is that sometimes these conversions take a while. Currently I'm using a notification to let the user ...
3
votes
1answer
512 views
Xps printing from windows service
I'm trying to print XPS documents from a windows service on the .net framework. Since Microsoft does not support printing by using System.Drawing.Printing nor by using System.Printing (WPF), I'm using ...
3
votes
1answer
81 views
How to set permission in a XPS Document?
I need to secure a XPS Document in C#, but I dont find any Library, please help me...
Thanks.
3
votes
1answer
169 views
xps document printed from wpf - too short, strange paper size?
I'm testing a wpf application printing capabilities by just printing to an xps file.. stragely, even though the paper size settings are correct for the system, it seems to shorten my 8.5x11" paper ...
3
votes
2answers
803 views
XPS document to PDF,DOC [closed]
Which one is the best third party libary to convert XPS to PDF and XPS to DOC.
3
votes
1answer
369 views
Reading from PackagePart stream does not release memory
In our application, we are reading an XPS file using the System.IO.Packaging.Package class. When we read from a stream of a PackagePart, we can see from the Task Manager that the application's memory ...
3
votes
1answer
982 views
How to convert every page in a XPS file to an image in C#?
Is there a way to convert every page in a XPS document to an image programmatically using C#?
3
votes
1answer
2k views
WPF to XPS in landscape orientation
i am trying to to generate a XPS Document from a WPF Control. Printing works so far, but i cannot find a way to create the XPS in landscape mode.
My code to create the XPS file, mostly taken from ...
3
votes
2answers
1k views
3
votes
2answers
1k views
Another way to display an XPS document using WPF
I would like to ask if there are any other alternatives, aside from DocumentViewer, for displaying an XPS document in a WPF application? A ready-to-use control or class in .NET if possible.
This is ...
3
votes
3answers
684 views
How do I find where my .Net app is leaking Windows handles?
I've got a WinForms .Net app that runs over a lot of XPS documents (thousands) and during this run the number of handles (according sysinternals process monitor and task manager) increases by between ...
3
votes
3answers
1k views
XPS with Windows Forms
What is the best way to display and print XPS files in a Windows Forms application?
2
votes
3answers
169 views
Mapping a port in Xilinx Platform Studio and reading it in C
I'm working in Xilinx Platform Studio, and what I essentially want to do, is have a VHDL module output some values, and then I would like to be able to read that value from another program written in ...
2
votes
1answer
49 views
How to enumerate resources inside XPS file?
How can I access/read Resources inside an XPS package?
using (var doc = new System.Windows.Xps.Packaging.XpsDocument(filename, System.IO.FileAccess.Read))
{
// how to read XpsResources?
// ...
2
votes
0answers
279 views
strange signs in Documentviewer WPF
I'm adding a document viewer to my WPF project and all seems perfect. But when I try to open another xps file, the documentviewer places some [?] signs in my document.
Here's my code :
if (xps != ...
2
votes
1answer
327 views
How to print a file to the XpsDocumentWriter in C# or better yet, via VS.NET Automation?
What I am trying to accomplish (the manual way)
In VS 2010, I have project items that are sequencediagrams, they are really just .xml and have a suffix of .sequencediagrams . So I open the diagram ...
2
votes
2answers
448 views
Extract a single page from an XPS document
I need to split an existing XPS Document and create a new XPS Document with only one page of the original one. I tried to copy the document and delete pages from the copied document, but that's very ...
2
votes
1answer
366 views
Silently use Microsoft XPS Document Writer printer to create XPS
For some days now I've been battling with printing XPS to file without the dialog.
I've read posts on the matter in CodeGuru and by Feng Yuan (MSDN), along with many discussion topics here and I am ...
2
votes
1answer
361 views
Intercepting PrintDialog to XPS Document Writer
Currently I am providing the user with two controls: Save and Print. When the user selects Save, a region of the WPF display is packaged up and sent through a XpsDocumentWriter and the user is ...
2
votes
0answers
300 views
XPS Document with Print Ticket not printing correctly
I am trying to print XPS files, created in .Net, to several different makes of printer.
I have written some code to create the XPS and print it via PrintDialog along with a document level print ...
2
votes
3answers
190 views
Is there any built-in function in NET Framework which encodes a string to a valid XML unicode?
After checking an Xps file i noticed that the string within the Xps file <> is converted to <>
So is there any built-in function in the .Net framework that could do this job for ...
2
votes
1answer
111 views
Detect and Manipulate Fonts Used in XPS Documents with C#
I am looking to develop/locate a find-replace tool for XPS documents.
Does anyone know how to detect the the fonts used within XPS Documents within C#? And also how to produce an ODTTF Fils based on ...
2
votes
1answer
490 views
How to programmatically convert pdf to xps
How to programmatically convert pdf to xps? Need library, but no finished software product.
2
votes
1answer
2k views
Opening FlowDocument saved as XPS document with XPS viewer?
I am saving a WPF FlowDocument to the file system, using this code and a fileName with an xps extension:
// Save FlowDocument to file system as XPS document
using (var fs = new FileStream(fileName, ...
2
votes
3answers
479 views
XPS open source implementation?
Does any know of any C/C++ open source for XPS [XML Print Specification].
I found http://www.ndesk.org/Xps, but it is c# ...
Any help will be highly appreciated.
2
votes
0answers
563 views
WPF PrintVisual - Selecting XPS in print dialog causing errors
I've spent some time searching for related topics on this, but haven't found any...
My problem is that I am getting a few errors when trying to select the Print to Microsoft XPS Document Error.
If ...
2
votes
2answers
128 views
What is the simplest way to print a series of full-page images from a WPF application?
I have a series of images (just stored locally on disk) that I would like to print, one-per-page, possibly scaled up/down if necessary and centered.
What is the most straightforward method of doing ...
2
votes
2answers
516 views
How secure are XPS documents?
How secure are XPS documents? After looking from the inside of an XPS document, found the Unicode-string property. Could someone inject e.x. a script into the Unicode string property?
How does the ...
2
votes
1answer
1k views
Free way to convert PDF to XPS with C#
Are there any free tools that I can use to convert a PDF document into an XPS document? Although a nice programmatic API would be nice, I'm not opposed to shelling out to a command line tool to do ...
2
votes
2answers
10k views
“The calling thread must be STA, because many UI components require this.” Error in WPF?
I am creating a xps document as below.
Assembly assembly = Assembly.GetExecutingAssembly();
//read embedded xpsDocument file
Stream helpStream = ...
2
votes
1answer
417 views
How to search a text of xps document in xps document viewer through code?
is there any way to search a text through code and bring the focus. This is to bring focus on heading in a xpsDocument.
Thanks,
2
votes
1answer
2k views
How do you hide a WPF DocumentViewer's menu bars?
At the moment I have a DocumentViewer in a WPF window that displays an XPS file. I have created my own "Next Page" and "Previous Page" buttons and have set the DocumentViewer.Background property to be ...
2
votes
1answer
2k views
Generating XPS document from a Web Application
I hwas trying to generate a multi page XPS document from a web application and trying to stream that ona button click.
public class Class1
{
protected void btnGenerateLetter_OnClick(object sender, ...
2
votes
3answers
3k views
Way to default the name of the generated XPS file?
If a user prints a report, and they happen to be using the Microsoft XPS printer, i would like the default the filename to something meaningful.
i would have thought that the XPS printer would take ...
2
votes
1answer
1k views
Saving and printing XPSDocument through Paginator (seems to)causes a rasterization of the content
I use the WPF Printing Path to handle big large diagrams created in our application. The whole diagram consists of visuals.
A so called "DesignerPaginator" paginates the diagram (it is quite simple).
...
2
votes
3answers
3k views
What is the best XPS WYSIWYG Editor that will output XAML?
I am looking for a WYSIWYG for XPS that will ouput the raw XAML.
My intentions is use the tool for a way to quickly generate and test the XAML (of XPS documents) with the intention of then generating ...
2
votes
4answers
1k views
GDI To XPS
In his blog entry Printing documents to Microsoft XPS Document Writer without user interaction Feng Yuan says
If you're printing from your own applications, it's easy to specify MXDW as the ...