![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | XPS - WPF Guru's Please Help! Can anyone provide a c# example of how I can copy / reuse XPS resources? In creating a "template" system, I'm trying to: 1) read an XPS document; 2) replace place-holder text with actual text; 3) write new XPS document. My works so far leave an XPS document that when opened gives the error "AddFontResourceEx failed" ![]() Any help would greatly be appreciated. |
My System Specs![]() |
| | #2 (permalink) |
| Guest | Re: XPS - WPF Guru's Please Help! Sir C4 wrote: > Can anyone provide a c# example of how I can copy / reuse XPS > resources? In creating a "template" system, I'm trying to: 1) read an > XPS document; 2) replace place-holder text with actual text; 3) write > new XPS document. It this of any use? Its from the Vista Launch material: pkg = Package.Open(stm); foreach (PackagePart part in pkg.GetParts()) { Debug.WriteLine(part.Uri + " (" + part.ContentType + ")"); if (part.ContentType == "image/png") { using (Stream imgStream = part.GetStream()) { Image img = new Image(); BitmapImage bmp = new BitmapImage(); bmp.BeginInit(); bmp.StreamSource = imgStream; bmp.EndInit(); img.Source = bmp; img.MaxWidth = 200; imagesList.Items.Add(img); } } } -- Chad Z. Hower Microsoft Regional Director "Programming is an art form that fights back" http://www.KudzuWorld.com/ Need a professional technical speaker at your event? http://www.woo-hoo.net |
My System Specs![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A call for help from the PC guru's out there... | RyanGraubner | General Discussion | 4 | 02-24-2008 12:37 PM |
| Imaging a Vista Installation - Question for the guru's - imagex | BobS | Vista installation & setup | 11 | 02-18-2007 05:43 AM |
| XPS - WPF Guru's Please Help! | Sir C4 | Avalon | 2 | 12-10-2006 05:24 AM |
| Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? | Noozer | Vista General | 12 | 05-08-2006 04:38 PM |
| Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? | Noozer | Vista installation & setup | 12 | 05-08-2006 04:38 PM |