Edit XPS file in C# Forms application in Visual Studio 2008
I want to Open a .xps file in my C# Forms (Visual Studio 2008) application and then I want to add some contents on top of the document and then save document with different name.
Is this possible to achieve wi开发者_如何学编程thout creating WPF application?
If you are simply trying to edit the xps document without displaying it, then yes, you can skip the WPF user interface. Check out the System.Windows.Xps and System.Windows.Xps.Packaging namespaces for manipulating the document.
精彩评论